如何以表之间的特定关系将一个实体类存储在另一个实体类中?

发布于 2024-11-02 12:02:30 字数 187 浏览 0 评论 0原文

我的数据库中有这些关系: 在此处输入图像描述

我需要将与我的图书相关的所有作者存储在图书实体类中吗? 我试图通过使用实体集来解决此问题,但我无法使用它,因为 BookAuthors 表中没有主键!

任何形式的帮助都会很棒! =)

I have these relations in my data base:
enter image description here

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

对你的占有欲 2024-11-09 12:02:30

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文