I currently have a EF Context. In my database schema I have the following scenario.
Two Tables, TableA and TableB
Tables are defined as follows:
TableA ( A_ID, name, description)
TableB ( B_ID, C_ID, name, description)
The relationship between TableA and TableB is such that B_ID and C_ID are both FK's to A_ID.
How do I achieve this behaviour in EF by setting up either my ModelBinder (Fluent API) or by annotations. Thanks in advance.