Files
Libation/Source/DataLayer.Sqlite/SqliteContextFactory.cs
2025-11-25 13:34:12 -07:00

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);
}
}
}