I have a scheme like this
Address:
tableName: address
columns:
id:
type: integer(4)
primary: true
autoincrement: true
address: string(45)
zip: string(45)
city: string(45)
relations:
Companies:
class: Company
refClass: CompanyAddress
foreignAlias: Addresses
Company:
tableName: company
columns:
id:
type: integer(4)
primary: true
autoincrement: true
name: string(254)
reg_number: string(11)
relations:
Addresses:
class: Address
refClass: CompanyAddress
foreignAlias: Companies
CompanyAddress:
tableName: company_address
columns:
company_id:
type: integer(4)
primary: true
address_id:
type: integer(4)
primary: true
apartment_number: string(45)
How can I set and retrieve apartment_number field form association
table CompanyAddress ? Is this posible with Doctrine. Thank you in
advance.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"symfony users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---