mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-09-18 17:48:11 +08:00
db.Fastest oracle
This commit is contained in:
@@ -20,7 +20,7 @@ namespace SqlSugar
|
||||
case DbType.Sqlite:
|
||||
break;
|
||||
case DbType.Oracle:
|
||||
break;
|
||||
return new OracleFastBuilder();
|
||||
case DbType.PostgreSQL:
|
||||
return new PostgreSQLFastBuilder(this.entityInfo);
|
||||
case DbType.Dm:
|
||||
@@ -32,7 +32,7 @@ namespace SqlSugar
|
||||
default:
|
||||
break;
|
||||
}
|
||||
throw new Exception(this.context.CurrentConnectionConfig.DbType + "开发中");
|
||||
throw new Exception(this.context.CurrentConnectionConfig.DbType + "开发中...");
|
||||
}
|
||||
private DataTable ToDdateTable(List<T> datas)
|
||||
{
|
||||
|
16
Src/Asp.Net/SqlSugar/OnlyNet/OracleFastBuilder.cs
Normal file
16
Src/Asp.Net/SqlSugar/OnlyNet/OracleFastBuilder.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace SqlSugar.OnlyNet
|
||||
{
|
||||
public class OracleFastBuilder
|
||||
{
|
||||
public OracleFastBuilder()
|
||||
{
|
||||
throw new Exception("Oracle bulk copy , only.net CORE is supported");
|
||||
}
|
||||
}
|
||||
}
|
@@ -95,6 +95,7 @@
|
||||
<Compile Include="Abstract\FilterProvider\FilterProvider.cs" />
|
||||
<Compile Include="Interface\IFastBuilder.cs" />
|
||||
<Compile Include="Interface\IFastest.cs" />
|
||||
<Compile Include="OnlyNet\OracleFastBuilder.cs" />
|
||||
<Compile Include="Realization\MySql\SqlBuilder\MySqlFastBuilder.cs" />
|
||||
<Compile Include="Realization\PostgreSQL\SqlBuilder\PostgreSQLFastBuilder.cs" />
|
||||
<Compile Include="Realization\SqlServer\SqlBuilder\SqlServerFastBuilder.cs" />
|
||||
|
Reference in New Issue
Block a user