mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-22 20:13:41 +08:00
Update ValueObject
This commit is contained in:
@@ -165,6 +165,13 @@ namespace SqlSugar
|
|||||||
{
|
{
|
||||||
setValue = null;
|
setValue = null;
|
||||||
}
|
}
|
||||||
|
if (item.UnderType == UtilConstants.GuidType&& setValue is string)
|
||||||
|
{
|
||||||
|
if (setValue != null)
|
||||||
|
{
|
||||||
|
setValue = Guid.Parse(setValue+"");
|
||||||
|
}
|
||||||
|
}
|
||||||
item.PropertyInfo.SetValue(parentObj, setValue);
|
item.PropertyInfo.SetValue(parentObj, setValue);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user