Tagged Questions

1
vote
1answer
65 views

Can I avoid redundant primary key columns in a MySQL table for django (python)?

I am aware of the fact, the if I use the ORM of Django every table has to have a primary key column. Somehow if you have a many_to_many table which links to tables (let's call them authors and books) ...
1
vote
1answer
271 views

ORM support for compound primary keys

I've read that compound primary keys will confuse the hell out of typical ORM code generators. Which ORMs work best with compound PKs and which to avoid? (I've a particular interest in .NET)
0
votes
1answer
351 views

Entity Framework Compound Key (Many-To-Many Relationship with a Payload)

I've got database tables like this: A person may be a member of many teams. A team may have many members. Each person may have a position (think job title) within the team. I've tried to set this ...