Adding new DatabaseConfig components in the Client project for supported Databases to avoid deploying server dlls to client
This commit is contained in:
9
Oqtane.Shared/Interfaces/IDatabaseConfigControl.cs
Normal file
9
Oqtane.Shared/Interfaces/IDatabaseConfigControl.cs
Normal file
@ -0,0 +1,9 @@
|
||||
namespace Oqtane.Interfaces
|
||||
{
|
||||
public interface IDatabaseConfigControl
|
||||
{
|
||||
string GetConnectionString();
|
||||
|
||||
bool IsInstaller { get; set; }
|
||||
}
|
||||
}
|
@ -14,12 +14,8 @@ namespace Oqtane.Interfaces
|
||||
|
||||
public string Provider { get; }
|
||||
|
||||
public List<ConnectionStringField> ConnectionStringFields { get; }
|
||||
|
||||
public OperationBuilder<AddColumnOperation> AddAutoIncrementColumn(ColumnsBuilder table, string name);
|
||||
|
||||
public string BuildConnectionString();
|
||||
|
||||
public string ConcatenateSql(params string[] values);
|
||||
|
||||
public string RewriteName(string name);
|
||||
|
Reference in New Issue
Block a user