mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-12-03 11:54:00 +08:00
Synchronization code
This commit is contained in:
@@ -15,6 +15,7 @@ namespace SqlSugar
|
||||
@double,
|
||||
@Guid,
|
||||
@byte,
|
||||
@sbyte,
|
||||
@enum,
|
||||
@short,
|
||||
@long,
|
||||
|
||||
@@ -110,6 +110,10 @@ namespace SqlSugar
|
||||
{
|
||||
this.DbType = System.Data.DbType.Byte;
|
||||
}
|
||||
else if (type == UtilConstants.SByteType)
|
||||
{
|
||||
this.DbType = System.Data.DbType.SByte;
|
||||
}
|
||||
else if (type == UtilConstants.FloatType)
|
||||
{
|
||||
this.DbType = System.Data.DbType.Single;
|
||||
|
||||
@@ -24,6 +24,7 @@ namespace SqlSugar
|
||||
internal static Type BoolType = typeof(bool);
|
||||
internal static Type BoolTypeNull = typeof(bool?);
|
||||
internal static Type ByteType = typeof(Byte);
|
||||
internal static Type SByteType = typeof(sbyte);
|
||||
internal static Type ObjType = typeof(object);
|
||||
internal static Type DobType = typeof(double);
|
||||
internal static Type FloatType = typeof(float);
|
||||
|
||||
Reference in New Issue
Block a user