mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
9 lines
255 B
C#
9 lines
255 B
C#
using Microsoft.EntityFrameworkCore.Design;
|
|
|
|
namespace Aaru.Database
|
|
{
|
|
public class AaruContextFactory : IDesignTimeDbContextFactory<AaruContext>
|
|
{
|
|
public AaruContext CreateDbContext(string[] args) => AaruContext.Create("aaru.db");
|
|
}
|
|
} |