Remove dependency of Oqtane.Server on SqlClient
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
using System.Reflection;
|
||||
using Microsoft.Data.SqlClient;
|
||||
using System.Data;
|
||||
using System.Reflection;
|
||||
using Oqtane.Models;
|
||||
|
||||
namespace Oqtane.Repository
|
||||
@ -8,12 +8,12 @@ namespace Oqtane.Repository
|
||||
{
|
||||
void ExecuteScript(Tenant tenant, string script);
|
||||
|
||||
bool ExecuteScript(string connectionString, Assembly assembly, string filename);
|
||||
bool ExecuteScript(string connectionString, string databaseType, Assembly assembly, string filename);
|
||||
|
||||
bool ExecuteScript(Tenant tenant, Assembly assembly, string filename);
|
||||
|
||||
int ExecuteNonQuery(Tenant tenant, string query);
|
||||
|
||||
SqlDataReader ExecuteReader(Tenant tenant, string query);
|
||||
IDataReader ExecuteReader(Tenant tenant, string query);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user