Update ValueObject(nullable<enum>)

This commit is contained in:
sunkaixuan 2024-07-22 16:35:35 +08:00
parent da10bac1b0
commit 4989ee12c6
2 changed files with 5 additions and 1 deletions

View File

@ -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);
}
}

View File

@ -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>