[MODM-110] QueryBuilder missing values and values with wrong data types being inserted Created: 27/Jan/11 Updated: 19/Feb/11 Resolved: 12/Feb/11 |
|
| Status: | Resolved |
| Project: | Doctrine MongoDB ODM |
| Component/s: | None |
| Affects Version/s: | None |
| Fix Version/s: | 1.0.0BETA2 |
| Type: | Bug | Priority: | Minor |
| Reporter: | Shards | Assignee: | Jonathan H. Wage |
| Resolution: | Fixed | Votes: | 0 |
| Labels: | None | ||
| Attachments: |
|
| 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: } 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: } 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 PS.: Php files are attached |
| Comments |
| Comment by Jonathan H. Wage [ 11/Feb/11 ] |
|
Hi, phpunit test case? |
| Comment by Jonathan H. Wage [ 12/Feb/11 ] |
|
This is fixed now. |
| Comment by Shards [ 14/Feb/11 ] |
|
thank you =} |