Association end is not mapped in ADO entity framework

后端 未结 7 1774
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-14 12:00

I am just starting out with ADO.net Entity Framework I have mapped two tables together and receive the following error:

Error   1   Error 11010: Association End          


        
7条回答
  •  礼貌的吻别
    2021-02-14 12:57

    There's not a lot of information in your question, but, generally speaking, this means that there is an incompletely defined association. It could be that you have tried to map one table with a foreign key to another table, but have not mapped that other table. You can also get this error when you try to do table per type inheritance without carefully following the steps for implementing that feature.

提交回复
热议问题