21 lines
539 B
C#
21 lines
539 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace MyDarling.Models
|
|
{
|
|
public class DataContext : DbContext
|
|
{
|
|
protected readonly IConfiguration configuration;
|
|
public DataContext(IConfiguration configuration)
|
|
{
|
|
this.configuration = configuration;
|
|
}
|
|
|
|
protected override void OnConfiguring(DbContextOptionsBuilder opts)
|
|
{
|
|
opts.UseSqlite(configuration.GetConnectionString("MyDarlingDb"));
|
|
}
|
|
|
|
public DbSet<UnderwearBundle> UnderwearBundles => Set<UnderwearBundle>();
|
|
public DbSet<Figure> Figures => Set<Figure>();
|
|
}
|
|
} |