对一个或多个实体的验证失败。有关详细信息,请参见“EntityValidationErrors”属性。_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > 对一个或多个实体的验证失败。有关详细信息,请参见“EntityValidationErrors”属性。

对一个或多个实体的验证失败。有关详细信息,请参见“EntityValidationErrors”属性。

 2017/5/8 5:31:39  jinzhaoyoujiu  程序员俱乐部  我要评论(0)
  • 摘要:我遇到问题产生的原因:数据库表的某个字段为不能为空。在修改实体属性的时候,实体对应的表中不能为空的字段为null。详情:数据库:c#:错误代码:staticvoidEditAdvance(){Categoryc=newCategory(){CategoryID=11,Description="bad"};System.Data.Entity.Infrastructure.DbEntityEntry<Category>a=db.Entry<Category>(c);a
  • 标签:一个 失败

我遇到问题产生的原因:数据库表的某个字段为不能为空。在修改实体属性的时候,实体对应的表中不能为空的字段为null。

详情:

数据库:

c #:

错误代码:

            static void EditAdvance()
            {
                Category c = new Category() { CategoryID = 11,Description = "bad" }; 
                System.Data.Entity.Infrastructure.DbEntityEntry<Category> a = db.Entry<Category>(c);
                a.State = System.Data.EntityState.Unchanged;
                a.Property("Description").IsModified = true;
                db.SaveChanges();
                Console.WriteLine("modify success");
            }

 

正确代码:

            static void EditAdvance()
            {
                Category c = new Category() { CategoryID = 11, CategoryName="new",Description = "bad" }; 
                System.Data.Entity.Infrastructure.DbEntityEntry<Category> a = db.Entry<Category>(c);
                a.State = System.Data.EntityState.Unchanged;
                a.Property("Description").IsModified = true;
                db.SaveChanges();
                Console.WriteLine("modify success");
            }

 

发表评论
用户名: 匿名