mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Update ValueObject(nullable<enum>)
This commit is contained in:
parent
da10bac1b0
commit
4989ee12c6
@ -172,6 +172,10 @@ namespace SqlSugar
|
||||
setValue = Guid.Parse(setValue+"");
|
||||
}
|
||||
}
|
||||
else if (item.UnderType?.IsEnum==true&& setValue!=null)
|
||||
{
|
||||
setValue = UtilMethods.ChangeType2(setValue, item.UnderType);
|
||||
}
|
||||
item.PropertyInfo.SetValue(parentObj, setValue);
|
||||
}
|
||||
}
|
||||
|
@ -2,7 +2,7 @@
|
||||
<package >
|
||||
<metadata>
|
||||
<id>SqlSugarCore</id>
|
||||
<version>5.1.4.167-preview04</version>
|
||||
<version>5.1.4.167-preview06</version>
|
||||
<authors>sunkaixuan</authors>
|
||||
<owners>果糖大数据科技</owners>
|
||||
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0.html</licenseUrl>
|
||||
|
Loading…
Reference in New Issue
Block a user