首页 > 代码库 > Validation failed for one or more entities. See 'EntityValidationErrors' property for more details.
Validation failed for one or more entities. See 'EntityValidationErrors' property for more details.
“/”应用程序中的服务器错误。
Validation failed for one or more entities. See ‘EntityValidationErrors‘ property for more details.
说明: 执行当前 Web 请求期间,出现未经处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。
异常详细信息: System.Data.Entity.Validation.DbEntityValidationException: Validation failed for one or more entities. See ‘EntityValidationErrors‘ property for more details.
源错误:
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
出现此问题:
我们不能从错误信息中找到是那个实体,的那个属性的赋值错误,导致了这个异常的抛出。
这时候我们应该将错误对象进行转换,以便我们能得到我们需要的信息,来进行程序的修改。
具体看一下代码:
在监视器中进行对象的转换:
((System.Data.Entity.Validation.DbEntityValidationException)$exception)
得到我们需要的对象,就可以找到具体是哪里产生的错误啦。。。。
找到问题了,修改代码,就可以啦,哇咔咔。郁闷很久的问题终于解决啦
Validation failed for one or more entities. See 'EntityValidationErrors' property for more details.