Update ValueObject

This commit is contained in:
sunkaixuan
2024-07-17 14:04:23 +08:00
parent 24934bbdfd
commit 9817d360df

View File

@@ -165,6 +165,13 @@ namespace SqlSugar
{
setValue = null;
}
if (item.UnderType == UtilConstants.GuidType&& setValue is string)
{
if (setValue != null)
{
setValue = Guid.Parse(setValue+"");
}
}
item.PropertyInfo.SetValue(parentObj, setValue);
}
}