fix error when StorageableByObject(null) or StorageableByObject(new List<xx>())

This commit is contained in:
SW 2024-06-11 18:49:22 +08:00
parent cbb7a670c6
commit 21198be833
2 changed files with 8 additions and 4 deletions

View File

@ -111,9 +111,9 @@ namespace SqlSugar
}
public StorageableCommonMethodInfo IgnoreColumns(params string[] ignoreColumns)
{
PropertyInfo property = ObjectValue.GetType().GetProperty(type);
var value = property.GetValue(ObjectValue);
var newObj = value.GetType().GetMyMethod("IgnoreColumns", 1, typeof(string[])).Invoke(value, new object[] { ignoreColumns });
PropertyInfo property = ObjectValue?.GetType().GetProperty(type);
var value = property?.GetValue(ObjectValue);
var newObj = value?.GetType().GetMyMethod("IgnoreColumns", 1, typeof(string[])).Invoke(value, new object[] { ignoreColumns });
StorageableCommonMethodInfo result = new StorageableCommonMethodInfo();
result.Value = newObj;
return result;
@ -124,6 +124,7 @@ namespace SqlSugar
public object Value { get; set; }
public int ExecuteCommand()
{
if(Value == null) return 0;
var newObj = Value.GetType().GetMethod("ExecuteCommand").Invoke(Value, new object[] { });
return (int)newObj;
}

View File

@ -52,7 +52,10 @@ namespace OrmTest
// 忽略为NULL和默认值的列进行更新Ignore columns with NULL and default values during update
var result7 = db.Updateable(updateObj)
.IgnoreColumns(ignoreAllNullColumns: true, ignoreAllDefaultValue:true)
.IgnoreColumns(ignoreAllNullColumns: true, ignoreAllDefaultValue: true)
.ExecuteCommand();
var result7a = db.StorageableByObject(new List<StudentWithSnowflake>()).ToStorage().AsUpdateable
.IgnoreColumns(new[] { "" })
.ExecuteCommand();
// 使用最快的方式批量更新实体对象列表Bulk update a list of entity objects using the fastest method