DbContext.saveChanges()中的NullReferenceException

以我的第一个实体框架5.0来实现我的第一个实例,我遇到了第一个实体创建的异常。

请注意,之后创建的每个表格都可以正常工作。 另外,请注意,我已经采取了重新生成数据库和/或重新启动Visual Studio IDE的通常步骤。

使用模型 - 首先,我创建了一个名为Contacts的简单表格,定义为

  <EntityType Name="Contacts">
    <Key>
      <PropertyRef Name="ContactID" />
    </Key>
    <Property Name="ContactID" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
    <Property Name="Name" Type="nvarchar(max)" Nullable="false" />
  </EntityType>

然后我尝试运行以下代码(从ASP.NET页面的Page_Load中运行)

            var contact = new DataContext.Contact { Name = aName };

            context.Contacts.Add(contact);
            context.SaveChanges();

(用aName!= null)

例外:

System.NullReferenceException was unhandled by user code
  HResult=-2147467261
  Message=Object reference not set to an instance of an object.
  Source=System.Web
  StackTrace:
       at System.Web.UI.ParseChildrenAttribute.GetHashCode()
       at System.Collections.Generic.ObjectEqualityComparer`1.GetHashCode(T obj)
       at System.Collections.Generic.HashSet`1.InternalGetHashCode(T item)
       at System.Collections.Generic.HashSet`1.AddIfNotPresent(T value)
       at System.Collections.Generic.HashSet`1.UnionWith(IEnumerable`1 other)
       at System.Collections.Generic.HashSet`1..ctor(IEnumerable`1 collection, IEqualityComparer`1 comparer)
       at System.Collections.Generic.HashSet`1..ctor(IEnumerable`1 collection)
       at System.Data.Entity.ModelConfiguration.Utilities.AttributeProvider.GetAttributes(Type type)
       at System.Data.Entity.ModelConfiguration.Utilities.AttributeProvider.GetAttributes(PropertyInfo propertyInfo)
       at System.Data.Entity.Internal.Validation.EntityValidatorBuilder.BuildPropertyValidator(PropertyInfo clrProperty)
       at System.Data.Entity.Internal.Validation.EntityValidatorBuilder.BuildValidatorsForProperties(IEnumerable`1 clrProperties, IEnumerable`1 edmProperties, IEnumerable`1 navigationProperties)
       at System.Data.Entity.Internal.Validation.EntityValidatorBuilder.BuildTypeValidator[T](Type clrType, IEnumerable`1 edmProperties, IEnumerable`1 navigationProperties, Func`3 validatorFactoryFunc)
       at System.Data.Entity.Internal.Validation.EntityValidatorBuilder.BuildEntityValidator(InternalEntityEntry entityEntry)
       at System.Data.Entity.Internal.Validation.ValidationProvider.GetEntityValidator(InternalEntityEntry entityEntry)
       at System.Data.Entity.Internal.InternalEntityEntry.GetValidationResult(IDictionary`2 items)
       at System.Data.Entity.DbContext.ValidateEntity(DbEntityEntry entityEntry, IDictionary`2 items)
       at System.Data.Entity.DbContext.GetValidationErrors()
       at System.Data.Entity.Internal.InternalContext.SaveChanges()
       at System.Data.Entity.Internal.LazyInternalContext.SaveChanges()
       at System.Data.Entity.DbContext.SaveChanges()
       at Contactisch._Default.AddContact(String aName) in c:ProjectsContactischContactischContactischDefault.aspx.cs:line 32
       at Contactisch._Default.Page_Load(Object sender, EventArgs e) in c:ProjectsContactischContactischContactischDefault.aspx.cs:line 14
       at System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e)
       at System.Web.UI.Control.OnLoad(EventArgs e)
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
  InnerException: 

有人可以解释这种异常的原因吗? 尤其是,在那里调用ParseChildrenAttribute.GetHashCode是什么?

我确实发现有人遇到同样的问题,但没有给出令人满意的解释。


当你在你的数据库中生成你的edmx和EF类后,你创建一个与你的数据库中的表名相同的ASP.NET网页时,会发生这种情况,Visual Studio会将它们放置在项目的默认名称空间中,这会导致与生成的冲突部分类的网页.aspx.cs文件

您不需要删除或重命名网页的.aspx文件,只需更改页面代码(myPage.aspx.cs)中声明的部分公共类的名称,并像这样适当调整页面的Inherits属性即可。

<%@Page Title="MyPage" ... Inherts="namespace.newClassName" >

或者,您可以随时在不同的名称空间下声明您的网页。


问题解决了。

原因有点愚蠢。 我正在使用VS Web Express的默认ASP.NET Web Forms Application项目来执行我的测试。 该项目包含一个名为Contact.aspx的Web表单, 因此它已经在与我的联系人实体相同的名称空间中包含了部分类Contact

可以理解的是,这对Entity Framework并没有起到很好的作用,导致了上面相当模糊的错误。 删除aspx页面解决了问题。

链接地址: http://www.djcxy.com/p/4803.html

上一篇: NullReferenceException in DbContext.saveChanges()

下一篇: How do I allow breaking on 'System.NullReferenceException' in VS2010?