Update .net core project

This commit is contained in:
sunkaixuan
2022-08-12 20:15:20 +08:00
parent 26c41c301e
commit d262cb7f8a
2 changed files with 4 additions and 0 deletions

View File

@@ -410,6 +410,9 @@ namespace SqlSugar
case DbType.QuestDB:
Check.Exception(SugarCompatible.IsFramework, "QuestDB only support .net core");
break;
case DbType.ClickHouse:
Check.Exception(SugarCompatible.IsFramework, "ClickHouse only support .net core");
break;
default:
throw new Exception("ConnectionConfig.DbType is null");
}

View File

@@ -20,6 +20,7 @@ namespace SqlSugar
OpenGauss,
QuestDB,
HG,
ClickHouse,
Custom =900
}
}