mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-20 02:29:39 +08:00
Update mysql
This commit is contained in:
@@ -128,6 +128,14 @@ namespace SqlSugar.MySqlConnector
|
||||
return Convert.ToInt64(value);
|
||||
}
|
||||
}
|
||||
else if (type == UtilConstants.LongType)
|
||||
{
|
||||
return GetString(value);
|
||||
}
|
||||
else if (type == UtilConstants.IntType)
|
||||
{
|
||||
return GetString(value);
|
||||
}
|
||||
else if (type == UtilConstants.BoolType)
|
||||
{
|
||||
return value.ObjToBool() ? "1" : "0";
|
||||
|
Reference in New Issue
Block a user