如何以表之间的特定关系将一个实体类存储在另一个实体类中?
我的数据库中有这些关系:
我需要将与我的图书相关的所有作者存储在图书实体类中吗? 我试图通过使用实体集来解决此问题,但我无法使用它,因为 BookAuthors 表中没有主键!
任何形式的帮助都会很棒! =)
I have these relations in my data base:
I need all authors related to my book stored in book entity class?
I was trying to resolve this by using entityset but I can't use it because there is no primary key in BookAuthors table!
Any kind of help will be great! =)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
LINQ-to-SQL需要主键才能具体化实体。由于 Books 和 Authors 实体彼此都不了解,我认为您唯一的选择就是像 Pleun 提到的那样向 BookAuthors 添加 PK。
这个问题与您的问题非常相似,但请注意 Order_Detail 表上的 PK: Linq2Sql 多对多关系问题 &插入新对象。
LINQ-to-SQL requires a primary key in order for it to materialize entities. And since neither Books nor Authors entities know anything about each other, I think your only option is to add a PK to BookAuthors as Pleun mentioned.
This question is very similar to yours, but note the PK on the Order_Detail table: Problem with Linq2Sql Many-to-Many relationship & Inserting new objects.