16 lines
449 B
C#
16 lines
449 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Design;
|
|
|
|
namespace SteUp.Data.LocalDb;
|
|
|
|
public class AppDbContextFactory : IDesignTimeDbContextFactory<AppDbContext>
|
|
{
|
|
public AppDbContext CreateDbContext(string[] args)
|
|
{
|
|
var options = new DbContextOptionsBuilder<AppDbContext>()
|
|
.UseSqlite("Data Source=design-time.db3")
|
|
.Options;
|
|
|
|
return new AppDbContext(options);
|
|
}
|
|
} |