我正在使用Code First Entity Model和Web API Asp.Net
我需要总共3张桌子
第一个表(Table1)
包含一些具有唯一ID的信息,我们可以说它就像是
string id
string model
第二个表(Table2)
包含有关用户的一些信息。让我们说它是
string Id
string name
string company
现在我需要第三张桌子。它只能用作连接表并包含
Table1 ModelInfo
Table2 UserInfo
但它显示的错误是无法使用unique id
创建表。但由于我的架构是我不需要unique id
我该怎么办?
还是我需要改变我的架构?
答案 0 :(得分:1)
您的问题是一般的EF CodeFirst多对多关系。 建议读物: