mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2026-01-23 13:21:59 +08:00
-
This commit is contained in:
@@ -325,7 +325,7 @@ namespace SqlSugar
|
|||||||
foreach (var column in EntityInfo.Columns)
|
foreach (var column in EntityInfo.Columns)
|
||||||
{
|
{
|
||||||
if (column.IsIgnore) continue;
|
if (column.IsIgnore) continue;
|
||||||
Check.ExceptionEasy(item == null, "db.Updateable(data) data不能是null", "db.Updateable(data) data不能是null");
|
Check.ExceptionEasy(item == null, "db.Updateable(data) data is required ", "db.Updateable(data) data不能是null");
|
||||||
var columnInfo = new DbColumnInfo()
|
var columnInfo = new DbColumnInfo()
|
||||||
{
|
{
|
||||||
Value = column.PropertyInfo.GetValue(item, null),
|
Value = column.PropertyInfo.GetValue(item, null),
|
||||||
|
|||||||
Reference in New Issue
Block a user