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