// using System; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; using WebAPIWithEF.Data; #nullable disable namespace WebAPIWithEF.Migrations { [DbContext(typeof(PizzaContext))] [Migration("20240611075625_InitialCreate")] partial class InitialCreate { /// protected override void BuildTargetModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder.HasAnnotation("ProductVersion", "8.0.6"); modelBuilder.Entity("WebAPIWithEF.Models.Pizza", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("Name") .HasColumnType("TEXT"); b.Property("SauceId") .HasColumnType("INTEGER"); b.HasKey("Id"); b.HasIndex("SauceId"); b.ToTable("Pizzas"); }); modelBuilder.Entity("WebAPIWithEF.Models.Sauce", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("Name") .HasColumnType("TEXT"); b.HasKey("Id"); b.ToTable("Sauces"); }); modelBuilder.Entity("WebAPIWithEF.Models.Topping", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("INTEGER"); b.Property("Name") .HasColumnType("TEXT"); b.Property("PizzaId") .HasColumnType("INTEGER"); b.HasKey("Id"); b.HasIndex("PizzaId"); b.ToTable("Toppings"); }); modelBuilder.Entity("WebAPIWithEF.Models.Pizza", b => { b.HasOne("WebAPIWithEF.Models.Sauce", "Sauce") .WithMany() .HasForeignKey("SauceId"); b.Navigation("Sauce"); }); modelBuilder.Entity("WebAPIWithEF.Models.Topping", b => { b.HasOne("WebAPIWithEF.Models.Pizza", null) .WithMany("Toppings") .HasForeignKey("PizzaId"); }); modelBuilder.Entity("WebAPIWithEF.Models.Pizza", b => { b.Navigation("Toppings"); }); #pragma warning restore 612, 618 } } }