实体框架 - 在多对多关系中添加同一实体两次

发布于 2024-12-01 06:57:35 字数 633 浏览 1 评论 0原文

好的。所以这就是交易。我有两个实体 - “产品”和“零件”。产品由零件组成。而且零件可以在其他产品中重复使用。这些实体之间的关系是多对多的。这一切都很好。

问题是我无法将同一部件两次添加到同一产品中。 EF 似乎强制所有相关实体都是唯一的。考虑下面的代码:

var product = context.Create<Product>();
var part = GetSomePart();

Console.WriteLine(product.Parts.Count); // will output 0

// Add a part
product.Parts.Add(part);
Console.WriteLine(product.Parts.Count); // will output 1

// Add the same part again
product.Parts.Add(part);
Console.WriteLine(product.Parts.Count); // will output 1!

好吧,我明白了——避免重复或其他什么。但我需要这成为可能。有没有办法在不创建额外表的情况下执行此操作(告诉 EF 停止强制执行唯一值)?或者解决这个问题的唯一方法是手动添加中间表并自己处理多对多?

Ok. So here is the deal. I have two entities - "Product" and "Parts". The product consists of parts. And parts are reusable in other products. The relation between those entities is many-to-many. And it all works great.

The problem is that I cannot add the same part to the same product twice. EF seems to force all the related entities to be unique. Consider the following code:

var product = context.Create<Product>();
var part = GetSomePart();

Console.WriteLine(product.Parts.Count); // will output 0

// Add a part
product.Parts.Add(part);
Console.WriteLine(product.Parts.Count); // will output 1

// Add the same part again
product.Parts.Add(part);
Console.WriteLine(product.Parts.Count); // will output 1!

So ok, I get the point - avoid duplicates or something. But I need this to be possible. Is there a way to do this (to tell EF to stop enforcing unique values) without creating an additional table? Or is the only way to resolve this is to manually add the intermediate table and handle the many-to-many myself?

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

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

发布评论

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

评论(2

网白 2024-12-08 06:57:35

在这种情况下,您将必须创建另一个名为“ProductParts”的表,该表将具有唯一标识键,并且可以保存对产品和零件的引用,并且它们也可以是多个。

In this case you will have to create another table called "ProductParts" which will have an identity unique key, and which can hold references to both product and part, and they can be multiple too.

枫以 2024-12-08 06:57:35

在第二个 add 语句中,它不会添加另一个对象,因为 part 已经处于已添加状态。因此,您需要创建一个具有相同属性的新对象,然后再次添加它。

product.Parts.Add(new Part{someProperty=part.someProperty ... ect });

如果你想减少代码,你可以使用 Automapper ( http://automapper.codeplex.com/ ) 来复制所有属性,

 product.Parts.Add(Mapper.Map<Part,Part>(part));

In the second add statement it will not add another object because part is already in added state. So you need to create a new object with same properties add it again.

product.Parts.Add(new Part{someProperty=part.someProperty ... ect });

if you want to reduce code you can use Automapper ( http://automapper.codeplex.com/ )to copy all properties,

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