1
0
mirror of synced 2024-12-14 15:16:04 +03:00
doctrine2/manual/new/docs/en/dql-doctrine-query-language/map-keyword.txt

31 lines
1.0 KiB
Plaintext
Raw Normal View History

2007-09-02 02:35:43 +04:00
The MAP keyword offers a way of mapping certain columns as collection / array keys. By default Doctrine maps multiple elements to numerically indexed arrays / collections. The mapping starts from zero. In order to override this behaviour you need to use MAP keyword as shown above:
<code type="php">
$q = new Doctrine_Query();
$q->from('User u MAP u.name');
$users = $q->execute();
</code>
Now the users in $users collection are accessible through their names.
<code type="php">
print $user['jack daniels']->id;
</code>
The MAP keyword can be applied to any given JOIN. This means that any given component can have each own mapping behaviour. In the following we use distinct mappings for both Users and Groups.
<code type="php">
$q = new Doctrine_Query();
$q->from('User u MAP u.name')->innerJoin('u.Group g MAP g.name');
$users = $q->execute();
</code>
Now lets print out the drinkers club's creation date.
2007-09-02 02:43:40 +04:00
2007-09-02 02:35:43 +04:00
<code>
print $users['jack daniels']->Group['drinkers club']->createdAt;
</code>