首页 > 其他 > 详细

Validation failed for one or more entities. See 'EntityValidationErrors' property for more details

时间:2014-09-19 15:44:35      阅读:214      评论:0      收藏:0      [点我收藏+]

如果使用的是Code First,使用update database -verbose完成了miragtion 之后,运行发现异常:


Validation failed for one or more entities. See ‘EntityValidationErrors‘ property for more details


这是由于migration对model的更改导致了db中column的限制(例如长度,StringLength(30)会导致nvarchar(max)变为nvarchar(30))


想要看到异常的具体信息,可以catch DbEntityValidationException :


try
{
    // Your code...
    // Could also be before try if you know the exception occurs in SaveChanges

    context.SaveChanges();
}
catch (DbEntityValidationException e)
{
    foreach (var eve in e.EntityValidationErrors)
    {
    }
}


Validation failed for one or more entities. See 'EntityValidationErrors' property for more details

原文:http://blog.csdn.net/lan_liang/article/details/39397269

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!