Changeset 4816

Show
Ignore:
Timestamp:
08/26/08 21:17:30 (10 months ago)
Author:
jwage
Message:

fixes #1227

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/1.0/docs/manual/en/relations.txt

    r4674 r4816  
    345345    } 
    346346} 
    347  
     347</code> 
     348 
     349Notice how the relationship is bi-directional. Both User hasMany Group and Group hasMany User. This is required by Doctrine in order for Many2Many relationships to fully work. 
     350 
     351Now lets play around with the new models and create a user and assign it some groups. 
     352 
     353<code type="php"> 
    348354$user = new User(); 
    349355