EF:从多对多(桥接)表中删除

发布于 2024-10-09 07:13:30 字数 381 浏览 1 评论 0原文

我有一个与此类似的设置:

Table1 
    id1 (int)
    name (varchar)

Table 2
    id2 (int)
    name (varchar)

Bridge
    id1 (fk to Table1)
    id2 (fk to Table2)

众所周知,在 EF 中,不存在代表 Bridge 的对象。相反,Table1 将包含 Table2 的集合,而 Table2 将包含 Table1 的集合。

假设我有一条 Table1 记录与 5 个 Table2 相关联。

如何高效删除所有 Table2 引用?我只想将它们从 Bridge 表中删除......

I've got a setup similar to this:

Table1 
    id1 (int)
    name (varchar)

Table 2
    id2 (int)
    name (varchar)

Bridge
    id1 (fk to Table1)
    id2 (fk to Table2)

As you all know, in the EF, an object won't exist to represent Bridge. Instead, Table1 will contain a collection of Table2's and Table2 will contain a collection of Table1's.

Let's say I have a single Table1 record associated with 5 Table2's.

How do I delete all Table2 references efficiently? I only want them deleted from the Bridge table...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

为你鎻心 2024-10-16 07:13:30

我认为您只需清除引用,然后保存更改 - 我认为它不会删除 Table2 记录,但我可能是错的:

var query = from item in context.Table1
            where item.id1 == id1
            select item;

var table1 = query.Single();
table1.Table2s.Clear();

context.SaveChanges();

I think you just clear the references and then save the changes - I don't think it deletes the Table2 records, but I may be wrong:

var query = from item in context.Table1
            where item.id1 == id1
            select item;

var table1 = query.Single();
table1.Table2s.Clear();

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