Having spent considerable time and read many posts relating to 1-1 relationships, data annotations and fluent api etc. I am still finding it difficult to determine how to describe a mapping to an existing database when considering a 'link table'. I had written this question and pasted code etc but I felt it was too long so i will try to describe the problem in a more generic sense - it has to do with a specific table structure mapping.

TABLE STRUCTURE:

Assume a structure of four tables below. I'm changing the tables names just to illustrate. It is a slightly unusual structure in that there is one degree of separation more than you might expect. The arrows (->) are one-one FK links and the double arrow (->>) is one-many.

(1) Employee ->> EmployeeAttributesLinkTable -> Attributes -> AttributeTypes

I have managed the strcuture below (with TPH):

(2) Employee ->> Attributes -> AttributeTypes

However for structure (1) I am getting errors such as 'Unable to determine the principal end of an association between the types...'

I know 'in principle' that I need to use fluent api and/or data annotations to tell code first how to map to my database but after many hours, I am starting to go around in circles. My question is: is it possible to map this sort of structure and are there any examples of mapping this sort of structure? I may well be one attribute away. I have tried to use the [InverseProperty] data annotation for example. I would prefer to use data annotations if possible.

Thanks

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.