using System; using System.Data.Common; using Microsoft.EntityFrameworkCore; namespace EntityFrameWorkLib { public class LolContext : DbContext { public DbSet Champions { get; set; } public LolContext() { } public LolContext(DbContextOptions options) :base(options) { } protected override void OnConfiguring(DbContextOptionsBuilder options) { if (!options.IsConfigured) { base.OnConfiguring(options.UseSqlite($"DataSource=projet.Champions.db")); } } } }