using the default entitity creation commands :
php app/console doctrine:mapping:import testSiteBundle yml
php app/console doctrine:generate:entities test --path=src/
Can i make additional parameters in many-to-many relation table work with symfony2+doctrine2 ?
Example case :
Table Invoice
- invoice id
Table Product
- product id
Relation-Table InvoiceProduct
- invoice id
- product id
- product quantity
Doctrine by default dont create relation-tables entities, and trying the example above, the "product quantity" is ignored.
what can i do to manage this ?