mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Update Core
This commit is contained in:
parent
bdf50ec86d
commit
527bf5c191
@ -418,7 +418,8 @@ namespace SqlSugar
|
||||
{
|
||||
ConditionalType = ConditionalType.Equal,
|
||||
FieldName = this.QueryBuilder.Builder.GetTranslationColumnName(column.DbColumnName),
|
||||
FieldValue = value.ObjToString()
|
||||
FieldValue = value.ObjToString(),
|
||||
CSharpTypeName = column.PropertyInfo.PropertyType.Name
|
||||
});
|
||||
if (this.Context.CurrentConnectionConfig.DbType == DbType.PostgreSQL)
|
||||
{
|
||||
@ -483,7 +484,8 @@ namespace SqlSugar
|
||||
{
|
||||
ConditionalType = ConditionalType.Equal,
|
||||
FieldName = column.DbColumnName,
|
||||
FieldValue = value.ObjToString()
|
||||
FieldValue = value.ObjToString(),
|
||||
CSharpTypeName=column.PropertyInfo.PropertyType.Name
|
||||
});
|
||||
if (value != null && value.GetType().IsEnum())
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user