// using GrossesMitainesAPI.Data; using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Infrastructure; using Microsoft.EntityFrameworkCore.Metadata; using Microsoft.EntityFrameworkCore.Migrations; using Microsoft.EntityFrameworkCore.Storage.ValueConversion; #nullable disable namespace GrossesMitainesAPI.Migrations { [DbContext(typeof(InventoryContext))] [Migration("20221009165926_Initial-Db")] partial class InitialDb { protected override void BuildTargetModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasAnnotation("ProductVersion", "6.0.9") .HasAnnotation("Relational:MaxIdentifierLength", 128); SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder, 1L, 1); modelBuilder.Entity("GrossesMitainesAPI.Models.Product", b => { b.Property("Id") .ValueGeneratedOnAdd() .HasColumnType("int"); SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"), 1L, 1); b.Property("Description") .IsRequired() .HasColumnType("nvarchar(max)"); b.Property("ImageName") .HasColumnType("nvarchar(max)"); b.Property("Price") .HasColumnType("decimal(18,2)"); b.Property("Title") .IsRequired() .HasMaxLength(255) .HasColumnType("nvarchar(255)"); b.HasKey("Id"); b.ToTable("Products"); b.HasData( new { Id = 1, Description = "Pour faire votre propre bonhomme de 1837, comme dans le bon vieux temps.", ImageName = "ceintureflechee", Price = 85.86m, Title = "Ceinture flèchée" }, new { Id = 2, Description = "Parce que ça sent la coupe!", ImageName = "pantouflesCH", Price = 15.64m, Title = "Pantoufles du Canadien en Phentex" }, new { Id = 3, Description = "On ne lui ferait pas mal, en tout cas!!", ImageName = "jeanlucmongrain", Price = 1453.12m, Title = "Jean-Luc Mongrain" }); }); #pragma warning restore 612, 618 } } }