Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Minor
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 1.0.0BETA2
-
Component/s: None
-
Labels:None
Description
Hello,
I'm using annotation mapping for my documents and found something strange when i insert a document (having an embed document) using the query builder...
When i use the document class and persist it, things are fine:
$testCase = new \Documents\Test(); $testCase->testInt = '0'; $testCase->intfields = new \Documents\Embed\Intfields(); $testCase->intfields->intone = '1'; $testCase->intfields->inttwo = '2'; $dm->persist($testCase); $dm->flush();
Result:
{
"_id": ObjectId("4d417fb1723014d009000008"),
"testInt": 0,
"intfields":
}
But when i use the query builder:
$dm->createQueryBuilder()
->insert('Documents\Test')
->field('testInt')->set('0')
->field('intfields.intone')->set('1')
->field('intfields.inttwo')->set('2')
->getQuery()->execute();
Result:
{
"_id": ObjectId("4d417fb1723014d009000009"),
"testInt": "0",
"intfields":
}
Intone is missing and the values are all string values.
It seems to be a bug, but as i'm new to the doctrine and mongo world, it's more than possible to be a user error. :}
I was using the clone version of the master git hub.. is that beta2?
Regards
S.
PS.: Php files are attached