zoukankan      html  css  js  c++  java
  • 对一个或多个实体的验证失败。有关详细信息,请参见“EntityValidationErrors”属性。

    我遇到问题产生的原因:数据库表的某个字段为不能为空。在修改实体属性的时候,实体对应的表中不能为空的字段为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");
                }
  • 相关阅读:
    Comet OJ
    AtCoder Grand Contest 002题解
    AtCoder Grand Contest 001 题解
    线性基求交
    2019牛客暑期多校训练营(第四场)题解
    AtCoder Grand Contest 036题解
    计算几何 val.2
    计算几何 val.1
    模拟退火学习笔记
    动态点分治学习笔记
  • 原文地址:https://www.cnblogs.com/jinzhaoyoujiu/p/EntityValidationErrors.html
Copyright © 2011-2022 走看看