Files
romrepomgr/RomRepoMgr.Database/ContextFactory.cs

9 lines
248 B
C#
Raw Normal View History

2020-08-21 23:21:01 +01:00
using Microsoft.EntityFrameworkCore.Design;
namespace RomRepoMgr.Database
{
public class ContextFactory : IDesignTimeDbContextFactory<Context>
{
public Context CreateDbContext(string[] args) => Context.Create("romrepo.db");
}
}