mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Update Subquery.ToList
This commit is contained in:
parent
105c42cedc
commit
78da0e0c36
@ -818,6 +818,10 @@ namespace SqlSugar
|
||||
{
|
||||
propertyInfo.SetValue(addItem, new Guid(kv.Value.ToString()));
|
||||
}
|
||||
else if (UtilMethods.GetUnderType(propertyInfo.PropertyType) == typeof(int) && kv.Value is long)
|
||||
{
|
||||
propertyInfo.SetValue(addItem, Convert.ToInt32(kv.Value));
|
||||
}
|
||||
else
|
||||
{
|
||||
propertyInfo.SetValue(addItem, kv.Value);
|
||||
|
Loading…
Reference in New Issue
Block a user