Update .net core project

This commit is contained in:
sunkaixuan 2022-07-29 21:05:02 +08:00
parent 70a9b1416d
commit cc2d595bc5
2 changed files with 4 additions and 0 deletions

View File

@ -404,6 +404,9 @@ namespace SqlSugar
Check.Exception(InstanceFactory.CustomNamespace.IsNullOrEmpty(), "DbType.Custom: InstanceFactory.CustomNamespace is not null ");
Check.Exception(InstanceFactory.CustomDllName.IsNullOrEmpty(), "DbType.Custom: InstanceFactory.CustomDllName is not null ");
break;
case DbType.QuestDB:
Check.Exception(SugarCompatible.IsFramework, "QuestDB only support .net core");
break;
default:
throw new Exception("ConnectionConfig.DbType is null");
}

View File

@ -18,6 +18,7 @@ namespace SqlSugar
MySqlConnector,
Access,
OpenGauss,
QuestDB,
Custom =900
}
}