mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-07-31 15:56:25 +08:00
Add Gbase
This commit is contained in:
parent
e1041d4722
commit
63cc920a16
@ -414,6 +414,10 @@ namespace SqlSugar
|
||||
Check.Exception(SugarCompatible.IsFramework, "ClickHouse only support .net core");
|
||||
InstanceFactory.CustomDllName = SugarCompatible.IsFramework ? "SqlSugar.ClickHouse" : "SqlSugar.ClickHouseCore";
|
||||
break;
|
||||
case DbType.GBase:
|
||||
Check.Exception(SugarCompatible.IsFramework, "GBase only support .net core");
|
||||
InstanceFactory.CustomDllName = SugarCompatible.IsFramework ? "SqlSugar.GBase" : "SqlSugar.GBaseCore";
|
||||
break;
|
||||
default:
|
||||
throw new Exception("ConnectionConfig.DbType is null");
|
||||
}
|
||||
|
@ -21,6 +21,7 @@ namespace SqlSugar
|
||||
QuestDB,
|
||||
HG,
|
||||
ClickHouse,
|
||||
GBase,
|
||||
Custom =900
|
||||
}
|
||||
}
|
||||
|
@ -414,6 +414,10 @@ namespace SqlSugar
|
||||
Check.Exception(SugarCompatible.IsFramework, "ClickHouse only support .net core");
|
||||
InstanceFactory.CustomDllName = SugarCompatible.IsFramework ? "SqlSugar.ClickHouse" : "SqlSugar.ClickHouseCore";
|
||||
break;
|
||||
case DbType.GBase:
|
||||
Check.Exception(SugarCompatible.IsFramework, "GBase only support .net core");
|
||||
InstanceFactory.CustomDllName = SugarCompatible.IsFramework ? "SqlSugar.GBase" : "SqlSugar.GBaseCore";
|
||||
break;
|
||||
default:
|
||||
throw new Exception("ConnectionConfig.DbType is null");
|
||||
}
|
||||
|
@ -21,6 +21,7 @@ namespace SqlSugar
|
||||
QuestDB,
|
||||
HG,
|
||||
ClickHouse,
|
||||
GBase,
|
||||
Custom =900
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user