Failed to enable constraints. One or more rows contain values violating non-null, unique, or foreign-key constraints.
原因有好几个,我这边的问题就是修改了sql 存储过程的结果集字段长度,用其他字段替换了原有的字段,一般是这个字段长度超过原有字段,容易出现这样的错误,比如用描述字段替换代码字段等
解决方案:
检查 DataSet中 Table 定义的字段长度
Solution: Check all the MaxLength property of the columns in your DataTable.