Doctrine\ODM\MongoDB\Query\Builder 的独立使用

发布于 2024-12-15 13:16:50 字数 526 浏览 3 评论 0原文

有人使用 Doctrine 的 Query\Builder 作为独立工具吗?

查询管理器似乎需要一个定义的 MongoDB 中请求的文档的类。

如果您有一个定义的类,例如:

<?php

namespace Documents;

/** @Document */
class User
{
    // ...

    /** @Field(type="string") */
    private $username;
}

那么您可以执行以下操作:

<?php

$user = $dm->createQueryBuilder('User')
    ->field('username')->equals('jwage')
    ->getQuery()
    ->getSingleResult();

有没有办法在不定义文档类的情况下使用 Query\Builder ?

预先感谢您的任何帮助。

doeas anybody use the Query\Builder from Doctrine as Standalone Tool ?

It seems like The Query Manager needs a defined
Class of the requested Document in MongoDB.

If you have a defined Class like:

<?php

namespace Documents;

/** @Document */
class User
{
    // ...

    /** @Field(type="string") */
    private $username;
}

Then you can do the following:

<?php

$user = $dm->createQueryBuilder('User')
    ->field('username')->equals('jwage')
    ->getQuery()
    ->getSingleResult();

Is there a way to do use the Query\Builder without defining the Document Classes ?

Thanks in advance for any help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最美不过初阳 2024-12-22 13:16:50

一旦有了 ClassMetaData,您就可以使用 QueryBuilder。
此类元数据是将类属性映射到内部信息,例如数据类型、关联......

您可以在没有实际类的情况下定义此类元数据。
有不同的方法,但其中一种是使用 Doctrine\ODM\MongoDB\Tools\DisconnectedClassMetadataFactory 类,并使用 yaml 或 xml 映射提供相关信息。

您必须使用良好的 classMetadataFactoryName 选项来配置您的 DocumentManager。

You can use the QueryBuilder as soon as you have ClassMetaData.
This class metadata is about mapping class properties to internal information, such as data types, associations, ...

You can define this class metadata without having real classes.
There are different approaches, but one of them would be to use the Doctrine\ODM\MongoDB\Tools\DisconnectedClassMetadataFactory class, and feed related information using yaml or xml mapping.

You will have to configure your DocumentManager with the good classMetadataFactoryName option.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文