Commit 78b4dc24 authored by zYne's avatar zYne

--no commit message

--no commit message
parent ba61451a
...@@ -82,7 +82,7 @@ $q->select('{u.*}, {p.*}') ...@@ -82,7 +82,7 @@ $q->select('{u.*}, {p.*}')
// here we tell that user table is bound to class called 'User' // here we tell that user table is bound to class called 'User'
// we also add an alias for User class called 'u' // we also add an alias for User class called 'u'
// this alias will be used when referencing to User class // this alias will be used when referencing to User class
->addComponent('u', 'User u'); ->addComponent('u', 'User u')
// here we add another component that is bound to table phonenumber // here we add another component that is bound to table phonenumber
// notice how we reference that the Phonenumber class is "User's phonenumber" // notice how we reference that the Phonenumber class is "User's phonenumber"
->addComponent('p', 'u.Phonenumber p'); ->addComponent('p', 'u.Phonenumber p');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment