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