InkForge/app/InkForge.Common/Data/NoteDbContextFactory.cs

16 lines
248 B
C#
Raw Normal View History

2024-02-09 01:23:38 +01:00
using InkForge.Data;
using Microsoft.EntityFrameworkCore;
namespace InkForge.Common.Data;
public class NoteDbContextFactory : IDbContextFactory<NoteDbContext>
{
public NoteDbContext CreateDbContext()
{
return new NoteDbContext(null);
}
}