在我的mongodb中,我有一个集合,其中id字段不是对象ID我不知道为什么它是这样构建的,我无法从头开始更改它,因为可能已经有很多软件使用这种模式。
但是,这就是这样的冰淇淋文档的样子:
{
"_id": "52d0283ae4b01db941dd763b",
"insertDate": ISODate("2014-01-10T17:04:58.617Z"),
"language": "en",
"profile": ObjectId("50e577602b5e05e74b38a6c8"),
"related": ObjectId("516c0061975a299edc44b419"),
"survey": ObjectId("516c0061975a299edc44b409"),
"version": NumberInt(0)
}
有了mongoshell,我可以找到它:
db.icecream.find({"_id":"52d0283ae4b01db941dd763b"})
而不是使用:
db.icecream.find({"_id":ObjectId("52d0283ae4b01db941dd763b")})
所以我尝试了很多查询来找到它,但 doctrine odm 总是不正确的查询,这是我的最新尝试:
return $this->mongo->getManager()
->getRepository('DocumentBundle:Icecream')
->findOneBy(array('_id' => (string)$answerId));
返回
doctrine.INFO: MongoDB query: {"find":true,"query":{"_id":{"$id":"52ced410e4b0fcc3da3a0c8b"}},"fields":[],"db":"myIcecreamDb","collection":"icecream"} [] []
有人知道吗?
如果你有自己的字符串_id(一个不是MongoId对象),你可能想要使用Id的"策略"属性。
use DoctrineODMMongoDBMappingAnnotations as ODM;
/** @ODMDocument */
class MyPersistentClass
{
/** @ODMId(strategy="NONE") */
private $id;
public function setId($id) {
$this->id = $id;
}
}
您可以在此处的文档中看到更多选项:http://doctrine-mongodb-odm.readthedocs.org/en/latest/reference/basic-mapping.html#basic-mapping-identifiers
我刚刚遇到了这个。似乎学说缓存了一些映射。我刚刚从常规的MongoID切换到字符串ID,每当我运行查询时,Doctrine都会尝试将我的字符串ID转换为MongoID(如您所描述的)。这导致未找到结果。
我清除了所有缓存并修复了它 - Doctrine 现在只使用常规字符串 id。
我正在使用以下内容:
/**
* @MongoDBId(strategy="NONE", type="string")
*/
private $id;
好的,我通过以下映射解决了这个问题
/**
* @MongoDBField(type="string",name="_id")
*/
protected $idstring;
/**
* @MongoDBId
*/
protected $id2;
那么 idstring 是字符串表示形式