gpt4 book ai didi

php - Doctrine MongoDB 按 id 查找

转载 作者:可可西里 更新时间:2023-11-01 09:24:45 25 4
gpt4 key购买 nike

我正在使用 odm mongo 原则,我必须记录类

class Thing
{
/**
* @MongoDB\Id
*/
protected $id;

/**
* @MongoDB\ReferenceOne(targetDocument="Bundle1:Other")
*/
protected $other;
}

class Other
{
/**
* @MongoDB\Id
*/
protected $id;
}

所以在数据库中的东西看起来像:

{
"_id":ObjectId("43z758634875adf"),
"other":ObjectId("38z287348d8se")
}

我现在如何查询 other 是给定 id 的东西?

    $dm=$this->mongo->getManager();
$answers=$dm
->createQueryBuilder('Bundle1:Thing')
->field('other')->equals("ObjectId(516c0061975a299edc44b419)") // <-- ?
->getQuery()
->execute()->count();

这会产生错误的 mongo 查询

MongoDB query: {"find":true,"query":{"other":"ObjectId(516c0061975a299edc44b419)"},"fields":[],"db":"maself","collection":"thing"} [] []

当我使用

->field('other')->equals("516c0061975a299edc44b419")

查询也是错误的

MongoDB query: {"find":true,"query":{"other":"516c0061975a299edc44b419"},"fields":[],"db":"maself","collection":"thing"} [] []

那么我如何搜索其他 id 等于 objectId 的东西?

最佳答案

尝试

->field('other')->equals(new \MongoId("516c0061975a299edc44b419"))

ObjectId 是 Mongo 的内部类型,在 PHP 中用\MongoId() 表示

(不过我在第一个话题里也回答过了)

关于php - Doctrine MongoDB 按 id 查找,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21018417/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com