Files
romrepomgr/RomRepoMgr.Database/ContextFactory.cs
2020-08-21 23:21:01 +01:00

9 lines
248 B
C#

using Microsoft.EntityFrameworkCore.Design;
namespace RomRepoMgr.Database
{
public class ContextFactory : IDesignTimeDbContextFactory<Context>
{
public Context CreateDbContext(string[] args) => Context.Create("romrepo.db");
}
}