mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-24 18:04:52 +08:00
Update nav query
This commit is contained in:
parent
fb369b2cad
commit
b65f73894c
@ -817,6 +817,10 @@ namespace SqlSugar
|
||||
{
|
||||
propertyInfo.SetValue(addItem,null);
|
||||
}
|
||||
else if (UtilMethods.GetUnderType(propertyInfo.PropertyType) == typeof(Guid) && kv.Value is string)
|
||||
{
|
||||
propertyInfo.SetValue(addItem, new Guid(kv.Value.ToString()));
|
||||
}
|
||||
else
|
||||
{
|
||||
propertyInfo.SetValue(addItem, kv.Value);
|
||||
|
Loading…
Reference in New Issue
Block a user