264 lines
8.7 KiB
C#
264 lines
8.7 KiB
C#
// <auto-generated />
|
|
using System;
|
|
using Infrastructure.Data;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
|
|
#nullable disable
|
|
|
|
namespace Infrastructure.Data.Migrations
|
|
{
|
|
[DbContext(typeof(StoreContext))]
|
|
partial class StoreContextModelSnapshot : ModelSnapshot
|
|
{
|
|
protected override void BuildModel(ModelBuilder modelBuilder)
|
|
{
|
|
#pragma warning disable 612, 618
|
|
modelBuilder.HasAnnotation("ProductVersion", "6.0.5");
|
|
|
|
modelBuilder.Entity("Core.Entities.OrderAggregate.DeliveryMethod", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.Property<string>("DeliveryTime")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("Description")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<double>("Price")
|
|
.HasColumnType("decimal(18,2)");
|
|
|
|
b.Property<string>("ShortName")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.ToTable("DeliveryMethod");
|
|
});
|
|
|
|
modelBuilder.Entity("Core.Entities.OrderAggregate.Order", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.Property<string>("BuyerEmail")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<int?>("DeliveryMethodId")
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.Property<DateTimeOffset>("OrderDate")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("PaymentIntentId")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("Status")
|
|
.IsRequired()
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<double>("Subtotal")
|
|
.HasColumnType("REAL");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("DeliveryMethodId");
|
|
|
|
b.ToTable("Orders");
|
|
});
|
|
|
|
modelBuilder.Entity("Core.Entities.OrderAggregate.OrderItem", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.Property<int?>("OrderId")
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.Property<double>("Price")
|
|
.HasColumnType("decimal(18,2)");
|
|
|
|
b.Property<int>("Quantity")
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("OrderId");
|
|
|
|
b.ToTable("OrderItems");
|
|
});
|
|
|
|
modelBuilder.Entity("Core.Entities.Product", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.Property<string>("Description")
|
|
.IsRequired()
|
|
.HasMaxLength(256)
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(100)
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<string>("PictureUrl")
|
|
.IsRequired()
|
|
.HasColumnType("TEXT");
|
|
|
|
b.Property<double>("Price")
|
|
.HasColumnType("decimal(18,2)");
|
|
|
|
b.Property<int>("ProductBrandId")
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.Property<int>("ProductTypeId")
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ProductBrandId");
|
|
|
|
b.HasIndex("ProductTypeId");
|
|
|
|
b.ToTable("Products");
|
|
});
|
|
|
|
modelBuilder.Entity("Core.Entities.ProductBrand", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.Property<string>("Name")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.ToTable("ProductBrands");
|
|
});
|
|
|
|
modelBuilder.Entity("Core.Entities.ProductType", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("INTEGER");
|
|
|
|
b.Property<string>("Name")
|
|
.HasColumnType("TEXT");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.ToTable("ProductTypes");
|
|
});
|
|
|
|
modelBuilder.Entity("Core.Entities.OrderAggregate.Order", b =>
|
|
{
|
|
b.HasOne("Core.Entities.OrderAggregate.DeliveryMethod", "DeliveryMethod")
|
|
.WithMany()
|
|
.HasForeignKey("DeliveryMethodId");
|
|
|
|
b.OwnsOne("Core.Entities.OrderAggregate.Address", "ShipToAddress", b1 =>
|
|
{
|
|
b1.Property<int>("OrderId")
|
|
.HasColumnType("INTEGER");
|
|
|
|
b1.Property<string>("City")
|
|
.HasColumnType("TEXT");
|
|
|
|
b1.Property<string>("FirstName")
|
|
.HasColumnType("TEXT");
|
|
|
|
b1.Property<string>("LastName")
|
|
.HasColumnType("TEXT");
|
|
|
|
b1.Property<string>("State")
|
|
.HasColumnType("TEXT");
|
|
|
|
b1.Property<string>("Street")
|
|
.HasColumnType("TEXT");
|
|
|
|
b1.Property<string>("ZipCode")
|
|
.HasColumnType("TEXT");
|
|
|
|
b1.HasKey("OrderId");
|
|
|
|
b1.ToTable("Orders");
|
|
|
|
b1.WithOwner()
|
|
.HasForeignKey("OrderId");
|
|
});
|
|
|
|
b.Navigation("DeliveryMethod");
|
|
|
|
b.Navigation("ShipToAddress");
|
|
});
|
|
|
|
modelBuilder.Entity("Core.Entities.OrderAggregate.OrderItem", b =>
|
|
{
|
|
b.HasOne("Core.Entities.OrderAggregate.Order", null)
|
|
.WithMany("OrderItems")
|
|
.HasForeignKey("OrderId")
|
|
.OnDelete(DeleteBehavior.Cascade);
|
|
|
|
b.OwnsOne("Core.Entities.OrderAggregate.ProductItemOrdered", "ItemOrdered", b1 =>
|
|
{
|
|
b1.Property<int>("OrderItemId")
|
|
.HasColumnType("INTEGER");
|
|
|
|
b1.Property<string>("PictureUrl")
|
|
.HasColumnType("TEXT");
|
|
|
|
b1.Property<int>("ProductItemId")
|
|
.HasColumnType("INTEGER");
|
|
|
|
b1.Property<string>("ProductName")
|
|
.HasColumnType("TEXT");
|
|
|
|
b1.HasKey("OrderItemId");
|
|
|
|
b1.ToTable("OrderItems");
|
|
|
|
b1.WithOwner()
|
|
.HasForeignKey("OrderItemId");
|
|
});
|
|
|
|
b.Navigation("ItemOrdered");
|
|
});
|
|
|
|
modelBuilder.Entity("Core.Entities.Product", b =>
|
|
{
|
|
b.HasOne("Core.Entities.ProductBrand", "ProductBrand")
|
|
.WithMany()
|
|
.HasForeignKey("ProductBrandId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Core.Entities.ProductType", "ProductType")
|
|
.WithMany()
|
|
.HasForeignKey("ProductTypeId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("ProductBrand");
|
|
|
|
b.Navigation("ProductType");
|
|
});
|
|
|
|
modelBuilder.Entity("Core.Entities.OrderAggregate.Order", b =>
|
|
{
|
|
b.Navigation("OrderItems");
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|