12 lines
305 B
C#
12 lines
305 B
C#
using Microsoft.EntityFrameworkCore;
|
|||
|
|
|
||
|
|
namespace MiGu.DB.Abstractions.Providers;
|
||
|
|
|
||
|
|
public interface IDbProviderSetup
|
||
|
|
{
|
||
|
|
string Name { get; }
|
||
|
|
void Configure(DbContextOptionsBuilder builder, string connectionString);
|
||
|
|
string MigrationsAssemblyName { get; }
|
||
|
|
string MigrationsNamespace { get; }
|
||
|
|
}
|