mirror of
https://github.com/rmcrackan/Libation.git
synced 2025-12-23 22:17:52 -05:00
13 lines
325 B
C#
13 lines
325 B
C#
using Microsoft.EntityFrameworkCore.Design;
|
|
|
|
namespace DataLayer.Sqlite
|
|
{
|
|
public class SqliteContextFactory : IDesignTimeDbContextFactory<LibationContext>
|
|
{
|
|
public LibationContext CreateDbContext(string[] args)
|
|
{
|
|
return LibationContextFactory.CreateSqlite(string.Empty);
|
|
}
|
|
}
|
|
}
|