我正在使用实体框架 5 和 SQL Server。我正在插入数据,但得到以下信息:
public partial class TestContext : DbContext
public override int SaveChanges()
{
this.ApplyRules();
return base.SaveChanges();
}
Validation failed for one or more entities.
See 'EntityValidationErrors' property for more details.
有人可以告诉我如何找到有关验证错误的更多信息吗?
我查看了异常详细信息,但没有提供任何详细信息