ManyToMany

@ManyToMany(joinTableName, joinColumn1, joinColumn2) - referenced objects use many-to-many relation via additional join table, requires additional parameters to specify join table to implement relation, and fk columns to referene this and related entities. @ManyToMany or @ManyToMany() - referenced objects use many-to-many relation via additional join table, will autogenerate join table name to implement relation, and fk column names to referene this and related entities.

Members

Variables

joinColumn1
string joinColumn1;
Undocumented in source.
joinColumn2
string joinColumn2;
Undocumented in source.
joinTableName
string joinTableName;
Undocumented in source.

Meta