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.

33 lines
940 B

using System;
using System.Data.Common;
using Microsoft.EntityFrameworkCore;
using Model;
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"));
}
}
/*protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<ChampionEntity>()
.Property(c => c.Image)
.IsRequired(false);
modelBuilder.Entity<LargeImage>()
.HasKey(li => li.Base64);
}*/
}
}