forked from EllieBotDevs/elliebot
15 lines
370 B
C#
15 lines
370 B
C#
|
#nullable disable
|
||
|
using Microsoft.EntityFrameworkCore;
|
||
|
|
||
|
namespace EllieBot.Services;
|
||
|
|
||
|
public abstract class DbService
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Call this to apply all migrations
|
||
|
/// </summary>
|
||
|
public abstract Task SetupAsync();
|
||
|
|
||
|
public abstract DbContext CreateRawDbContext(string dbType, string connString);
|
||
|
public abstract DbContext GetDbContext();
|
||
|
}
|