mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-22 20:13:41 +08:00
split table insert null error
This commit is contained in:
@@ -65,6 +65,10 @@ namespace SqlSugar
|
||||
}
|
||||
else
|
||||
{
|
||||
if (entityValue == null)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
var value = splitColumn.PropertyInfo.GetValue(entityValue, null);
|
||||
if (value == null)
|
||||
{
|
||||
|
Reference in New Issue
Block a user