mirror of
https://github.com/claunia/romrepomgr.git
synced 2025-12-16 19:24:51 +00:00
9 lines
248 B
C#
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");
|
||
|
|
}
|
||
|
|
}
|