26 lines
701 B
C#
26 lines
701 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"));
|
|
}
|
|
|
|
// protected override void OnModelCreating(ModelBuilder builder)
|
|
// {
|
|
// builder.Entity<UnderwearBundle>().HasMany(b => b.Figures).WithOne();
|
|
// }
|
|
|
|
public DbSet<UnderwearBundle> UnderwearBundles => Set<UnderwearBundle>();
|
|
public DbSet<Figure> Figures => Set<Figure>();
|
|
}
|
|
} |