16 lines
453 B
C#
16 lines
453 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Design;
|
|
|
|
namespace MikrocopDb;
|
|
|
|
public sealed class AppDbContextFactory : IDesignTimeDbContextFactory<AppDbContext>
|
|
{
|
|
public AppDbContext CreateDbContext(string[] args)
|
|
{
|
|
var optionsBuilder = new DbContextOptionsBuilder<AppDbContext>();
|
|
optionsBuilder.UseSqlite("Data Source=mikrocop.db");
|
|
|
|
return new AppDbContext(optionsBuilder.Options);
|
|
}
|
|
}
|