Tagged Questions
4
votes
1answer
2k views
How to handle “secondary” keys in Entity Framework
I'm evaluating using EF against an existing schema - the problem is that I can't work out how to set up associations between tables where the foreign key is NOT the primary key of the master table.
...
1
vote
1answer
999 views
Entity Framework - How do I join tables on non-primary key columns in secondary tables?
I want to join 2 tables using entity framework. I want the join to the second table to be on a non-primary key column.
e.g. I have a table Foo with fields
Foo.Id (PK)
Foo.DbValue
and table Bar
...