You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
554 B
27 lines
554 B
using System;
|
|
using System.Data.Common;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace EntityFrameWorkLib
|
|
{
|
|
public class LolContext : DbContext
|
|
{
|
|
public DbSet<ChampionEntity> Champions { get; set; }
|
|
|
|
public LolContext() { }
|
|
public LolContext(DbContextOptions<LolContext> options)
|
|
:base(options)
|
|
{ }
|
|
protected override void OnConfiguring(DbContextOptionsBuilder options)
|
|
{
|
|
if (!options.IsConfigured)
|
|
{
|
|
base.OnConfiguring(options.UseSqlite($"DataSource=projet.Champions.db"));
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
}
|
|
|