using EntityFrameworkLOL.Entities; using Microsoft.EntityFrameworkCore; namespace EntityFrameworkLOL.DBContexts { class RuneContext : DbContext { public DbSet Rune { get; set; } protected override void OnConfiguring(DbContextOptionsBuilder options) => options.UseSqlite($"Data Source=DBLOL.db"); } }