InkForge/app/InkForge.Common/Data/NoteDbContextFactory.cs
2024-02-09 01:23:38 +01:00

15 lines
248 B
C#

using InkForge.Data;
using Microsoft.EntityFrameworkCore;
namespace InkForge.Common.Data;
public class NoteDbContextFactory : IDbContextFactory<NoteDbContext>
{
public NoteDbContext CreateDbContext()
{
return new NoteDbContext(null);
}
}