// using EntityFramwork; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; #nullable disable namespace EntityFramwork.Migrations { [DbContext(typeof(BDDContext))] partial class BDDContextModelSnapshot : ModelSnapshot { protected override void BuildModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder.HasAnnotation("ProductVersion", "7.0.2"); modelBuilder.Entity("DTO.EntityChampions", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("Bio") .IsRequired() .HasColumnType("TEXT"); b.Property("Classe") .IsRequired() .HasColumnType("TEXT"); b.Property("Icon") .IsRequired() .HasColumnType("TEXT"); b.Property("ImageId") .HasColumnType("INTEGER"); b.Property("Name") .IsRequired() .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("ImageId") .IsUnique(); b.HasIndex("Name") .IsUnique(); b.ToTable("Champions"); }); modelBuilder.Entity("EntityFramwork.EntityCategorieRune", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("Category") .IsRequired() .HasColumnType("TEXT"); b.Property("IdPageRune") .HasColumnType("INTEGER"); b.Property("IdRune") .HasColumnType("INTEGER"); b.HasKey("Id"); b.HasIndex("IdPageRune"); b.HasIndex("IdRune"); b.ToTable("CategorieRunes"); }); modelBuilder.Entity("EntityFramwork.EntityLargeImage", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("Base64") .IsRequired() .HasColumnType("TEXT"); b.HasKey("Id"); b.ToTable("Images"); b.HasData( new { Id = 1, Base64 = "Inconnu !" }, new { Id = 2, Base64 = "Inconnu !" }, new { Id = 3, Base64 = "Inconnu !" }, new { Id = 4, Base64 = "Inconnu !" }, new { Id = 5, Base64 = "Inconnu !" }, new { Id = 6, Base64 = "Inconnu !" }, new { Id = 7, Base64 = "Inconnu !" }, new { Id = 8, Base64 = "Inconnu !" }, new { Id = 9, Base64 = "Inconnu !" }, new { Id = 10, Base64 = "Inconnu !" }, new { Id = 11, Base64 = "Inconnu !" }, new { Id = 12, Base64 = "Inconnu !" }, new { Id = 13, Base64 = "Inconnu !" }, new { Id = 14, Base64 = "Inconnu !" }, new { Id = 15, Base64 = "Inconnu !" }, new { Id = 16, Base64 = "Inconnu !" }, new { Id = 17, Base64 = "Inconnu !" }, new { Id = 18, Base64 = "Inconnu !" }, new { Id = 19, Base64 = "Inconnu !" }, new { Id = 20, Base64 = "Inconnu !" }, new { Id = 21, Base64 = "Inconnu !" }, new { Id = 22, Base64 = "Inconnu !" }, new { Id = 23, Base64 = "Inconnu !" }, new { Id = 24, Base64 = "Inconnu !" }, new { Id = 25, Base64 = "Inconnu !" }, new { Id = 26, Base64 = "Inconnu !" }, new { Id = 27, Base64 = "Inconnu !" }, new { Id = 28, Base64 = "Inconnu !" }, new { Id = 29, Base64 = "Inconnu !" }); }); modelBuilder.Entity("EntityFramwork.EntityPageRune", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("Name") .IsRequired() .HasColumnType("TEXT"); b.HasKey("Id"); b.ToTable("PageRunes"); }); modelBuilder.Entity("EntityFramwork.EntityRunes", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("Description") .IsRequired() .HasColumnType("TEXT"); b.Property("Family") .IsRequired() .HasColumnType("TEXT"); b.Property("Icon") .IsRequired() .HasColumnType("TEXT"); b.Property("ImageId") .HasColumnType("INTEGER"); b.Property("Name") .IsRequired() .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("ImageId") .IsUnique(); b.ToTable("Runes"); }); modelBuilder.Entity("EntityFramwork.EntitySkill", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("ChampionId") .HasColumnType("INTEGER"); b.Property("Description") .IsRequired() .HasColumnType("TEXT"); b.Property("Name") .IsRequired() .HasColumnType("TEXT"); b.Property("Type") .IsRequired() .HasColumnType("TEXT"); b.HasKey("Id"); b.HasIndex("ChampionId"); b.ToTable("Skills"); }); modelBuilder.Entity("EntityFramwork.EntitySkins", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("ChampionId") .HasColumnType("INTEGER"); b.Property("Description") .IsRequired() .HasColumnType("TEXT"); b.Property("Icon") .IsRequired() .HasColumnType("TEXT"); b.Property("ImageId") .HasColumnType("INTEGER"); b.Property("Price") .HasColumnType("REAL"); b.HasKey("Id"); b.HasIndex("ChampionId"); b.HasIndex("ImageId") .IsUnique(); b.ToTable("Skins"); }); modelBuilder.Entity("DTO.EntityChampions", b => { b.HasOne("EntityFramwork.EntityLargeImage", "Image") .WithOne("Champion") .HasForeignKey("DTO.EntityChampions", "ImageId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Image"); }); modelBuilder.Entity("EntityFramwork.EntityCategorieRune", b => { b.HasOne("EntityFramwork.EntityPageRune", "PageRune") .WithMany("CategorieRune") .HasForeignKey("IdPageRune") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("EntityFramwork.EntityRunes", "Rune") .WithMany("CategorieRune") .HasForeignKey("IdRune") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("PageRune"); b.Navigation("Rune"); }); modelBuilder.Entity("EntityFramwork.EntityRunes", b => { b.HasOne("EntityFramwork.EntityLargeImage", "Image") .WithOne("Rune") .HasForeignKey("EntityFramwork.EntityRunes", "ImageId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Image"); }); modelBuilder.Entity("EntityFramwork.EntitySkill", b => { b.HasOne("DTO.EntityChampions", "Champions") .WithMany("Skills") .HasForeignKey("ChampionId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Champions"); }); modelBuilder.Entity("EntityFramwork.EntitySkins", b => { b.HasOne("DTO.EntityChampions", "Champion") .WithMany("Skins") .HasForeignKey("ChampionId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.HasOne("EntityFramwork.EntityLargeImage", "Image") .WithOne("Skin") .HasForeignKey("EntityFramwork.EntitySkins", "ImageId") .OnDelete(DeleteBehavior.Cascade) .IsRequired(); b.Navigation("Champion"); b.Navigation("Image"); }); modelBuilder.Entity("DTO.EntityChampions", b => { b.Navigation("Skills"); b.Navigation("Skins"); }); modelBuilder.Entity("EntityFramwork.EntityLargeImage", b => { b.Navigation("Champion") .IsRequired(); b.Navigation("Rune") .IsRequired(); b.Navigation("Skin") .IsRequired(); }); modelBuilder.Entity("EntityFramwork.EntityPageRune", b => { b.Navigation("CategorieRune"); }); modelBuilder.Entity("EntityFramwork.EntityRunes", b => { b.Navigation("CategorieRune"); }); #pragma warning restore 612, 618 } } }