gpt4 book ai didi

c# - Entity Framework 、Code First 建模和循环引用

转载 作者:太空狗 更新时间:2023-10-29 19:44:30 25 4
gpt4 key购买 nike

我已经花了几天时间,试图解决这个问题。在制作一个简单的项目来举例说明我的问题时,我偶然发现了一个可能的解决方案。所以,这是一个双重问题。

但首先,了解一些背景信息:

我刚刚开始使用 Entity Framework 4.1 (EF) 和 Code First 为我的 ASP.NET MVC 项目创建模型。我需要一些与此类似的模型:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace TestApp.Models
{
public class Family
{
public int ID { get; set; }
public string Name { get; set; }

public virtual ICollection<Father> Fathers { get; set; }
public virtual ICollection<Mother> Mothers { get; set; }
}

public class Mother
{
public int ID { get; set; }
public string Name { get; set; }
public int FamilyID { get; set; }

public virtual ICollection<Child> Children { get; set; }
public virtual Family Family { get; set; }
}

public class Father
{
public int ID { get; set; }
public string Name { get; set; }
public int FamilyID { get; set; }

public virtual ICollection<Child> Children { get; set; }
public virtual Family Family { get; set; }
}

public class Child
{
public int ID { get; set; }
public string Name { get; set; }
public int MotherID { get; set; }
public int FatherID { get; set; }

public virtual Mother Mother { get; set; }
public virtual Father Father { get; set; }
}
}

和 DbContext:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data.Entity;

namespace TestApp.Models
{
public class TestContext : DbContext
{
public DbSet<Family> Families { get; set; }
public DbSet<Mother> Mothers { get; set; }
public DbSet<Father> Fathers { get; set; }
public DbSet<Child> Children { get; set; }
}
}

(请原谅这个蹩脚的例子,这就是我周五炸毁的大脑能够想出的。)

一个家庭可以有多个母亲和多个父亲。一个 child 有一个母亲和一个父亲。我咨询了我工作中的一位 .NET 专家,他同意这没有什么特别之处。至少就我们所见而言。

但是当我运行代码时,我得到了这个异常:

System.Data.SqlServerCe.SqlCeException: The referential relationship will result in a cyclical reference that is not allowed. [ Constraint name = Mother_Family ]

我确实看到了这个循环:家庭 - 母亲 - child - 父亲 - 家庭。但是,如果我自己创建数据库表(我不喜欢这样做,这就是我喜欢 Code First 的原因),据我所知,它将是一个完全有效的数据结构。

那么,我的第一个问题是:为什么先使用代码会出现这个问题?有没有办法告诉 EF 如何正确处理循环?

然后,正如我最初写的那样,在创建一个简单的项目来举例说明我的问题时,我偶然发现了一个可能的解决方案。在定义我的模型时,我只是忘记了一些属性。为了在下面的示例中清楚起见,我没有删除它们,而是注释掉了我忘记的模型部分:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace TestApp.Models
{
public class Family
{
public int ID { get; set; }
public string Name { get; set; }

public virtual ICollection<Father> Fathers { get; set; }
public virtual ICollection<Mother> Mothers { get; set; }
}

public class Mother
{
public int ID { get; set; }
public string Name { get; set; }
// public int FamilyID { get; set; }

public virtual ICollection<Child> Children { get; set; }
public virtual Family Family { get; set; }
}

public class Father
{
public int ID { get; set; }
public string Name { get; set; }
// public int FamilyID { get; set; }

public virtual ICollection<Child> Children { get; set; }
public virtual Family Family { get; set; }
}

public class Child
{
public int ID { get; set; }
public string Name { get; set; }
// public int MotherID { get; set; }
// public int FatherID { get; set; }

public virtual Mother Mother { get; set; }
public virtual Father Father { get; set; }
}
}

因此,删除这些 SomethingID 引用属性似乎可以解决我的问题。正如您在本文末尾链接到的示例项目的 Controller 中看到的那样,我仍然能够一直循环并执行诸如 mothers.First().Family.Fathers 之类的操作.First().Children.First().Mother.Family.Name 没有任何问题。但是我一直在查看的所有关于 EF 和 Code First 建模的教程和示例(例如 this one by Scott Guthrie)都包含这些属性,所以不使用它们感觉不对。

那么,我的第二个问题是:这样做会有什么缺点和问题我还没有发现吗?

在此处下载示例项目:http://blackfin.cannedtuna.org/cyclical-reference-test-app.zip , 然后打开 TestSolution.sln。这些属性在示例项目中被注释掉了。取消注释 TestModels.cs 中添加属性的行,导致循环引用异常。

注意:解决方案是创建位于 c:\TestApp.sdf 的 SQL CE 数据库并为之播种

2011 年 12 月更新:我从来没有从技术上解决过这个问题,但我辞掉了工作,找到了另一份我不必使用微软技术的工作。这样解决了我的问题:)

作为老地方的技术支持,过去在解决问题时会写:“已提供解决方法或解决方案”。

最佳答案

But if I created the database tables myself (which I prefer not to, that's what I like about Code First) it would be a perfectly valid data structure, as far as I can tell.

这是您应该仔细检查的内容。异常直接来自数据库而不是 Entity Framework 。手动创建的具有相同约束的表结构也可能无效。请记住,您的外键属性 Mother.FamilyIDFather.FamilyIDChild.MotherIDChild.FatherID不可为空,因此它们表示所需的关系,并且数据库中的相应列也不可为空。

当您从模型类中删除所有这些属性时,您的关系突然变得可选,因为导航属性可以是null。这是另一个模型,因为数据库中的 FK 列可以为空!显然这是允许的模型。

如果你想在你的模型中仍然有代表可选关系而不是必需关系的外键属性,你可以使用可为空的类型:public int? FamilyID { 得到;放; }, 公共(public)整数?母亲ID { 得到;放;

关于c# - Entity Framework 、Code First 建模和循环引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6982153/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com