mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Update CodeFirst default value
This commit is contained in:
parent
d9c8bb5ca4
commit
292ec93dd9
@ -386,7 +386,7 @@ namespace SqlSugar
|
||||
}
|
||||
else if (columnInfo.DataType.ObjToString().ToLower().IsIn("float","double","decimal","int","int4","bigint","int8","int2")&& columnInfo.DefaultValue.IsInt())
|
||||
{
|
||||
value = columnInfo.DefaultValue;
|
||||
value =Convert.ToInt32(columnInfo.DefaultValue);
|
||||
}
|
||||
return value;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user