Tagged Questions
1
vote
1answer
995 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
...