255 lines
8.6 KiB
C#
255 lines
8.6 KiB
C#
|
// <auto-generated />
|
|||
|
using System;
|
|||
|
using ElectronicsShopDataBaseImplement;
|
|||
|
using Microsoft.EntityFrameworkCore;
|
|||
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|||
|
using Microsoft.EntityFrameworkCore.Metadata;
|
|||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|||
|
|
|||
|
#nullable disable
|
|||
|
|
|||
|
namespace ElectronicsShopDataBaseImplement.Migrations
|
|||
|
{
|
|||
|
[DbContext(typeof(Database))]
|
|||
|
[Migration("20240526155227_Migration02")]
|
|||
|
partial class Migration02
|
|||
|
{
|
|||
|
/// <inheritdoc />
|
|||
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|||
|
{
|
|||
|
#pragma warning disable 612, 618
|
|||
|
modelBuilder
|
|||
|
.HasAnnotation("ProductVersion", "8.0.4")
|
|||
|
.HasAnnotation("Relational:MaxIdentifierLength", 128);
|
|||
|
|
|||
|
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
|
|||
|
|
|||
|
modelBuilder.Entity("ElectronicsShopDataBaseImplement.Models.Client", b =>
|
|||
|
{
|
|||
|
b.Property<int>("ID")
|
|||
|
.ValueGeneratedOnAdd()
|
|||
|
.HasColumnType("int");
|
|||
|
|
|||
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("ID"));
|
|||
|
|
|||
|
b.Property<string>("ClientFIO")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("nvarchar(max)");
|
|||
|
|
|||
|
b.Property<string>("Email")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("nvarchar(max)");
|
|||
|
|
|||
|
b.Property<string>("Password")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("nvarchar(max)");
|
|||
|
|
|||
|
b.HasKey("ID");
|
|||
|
|
|||
|
b.ToTable("Clients");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("ElectronicsShopDataBaseImplement.Models.CostItem", b =>
|
|||
|
{
|
|||
|
b.Property<int>("ID")
|
|||
|
.ValueGeneratedOnAdd()
|
|||
|
.HasColumnType("int");
|
|||
|
|
|||
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("ID"));
|
|||
|
|
|||
|
b.Property<int>("EmployeeID")
|
|||
|
.HasColumnType("int");
|
|||
|
|
|||
|
b.Property<string>("Name")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("nvarchar(max)");
|
|||
|
|
|||
|
b.Property<double>("Price")
|
|||
|
.HasColumnType("float");
|
|||
|
|
|||
|
b.HasKey("ID");
|
|||
|
|
|||
|
b.ToTable("CostItems");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("ElectronicsShopDataBaseImplement.Models.Employee", b =>
|
|||
|
{
|
|||
|
b.Property<int>("ID")
|
|||
|
.ValueGeneratedOnAdd()
|
|||
|
.HasColumnType("int");
|
|||
|
|
|||
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("ID"));
|
|||
|
|
|||
|
b.Property<string>("EmployeeFIO")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("nvarchar(max)");
|
|||
|
|
|||
|
b.Property<string>("Login")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("nvarchar(max)");
|
|||
|
|
|||
|
b.Property<string>("Password")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("nvarchar(max)");
|
|||
|
|
|||
|
b.HasKey("ID");
|
|||
|
|
|||
|
b.ToTable("Employees");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("ElectronicsShopDataBaseImplement.Models.Order", b =>
|
|||
|
{
|
|||
|
b.Property<int>("ID")
|
|||
|
.ValueGeneratedOnAdd()
|
|||
|
.HasColumnType("int");
|
|||
|
|
|||
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("ID"));
|
|||
|
|
|||
|
b.Property<int>("ClientID")
|
|||
|
.HasColumnType("int");
|
|||
|
|
|||
|
b.Property<DateTime>("DateCreate")
|
|||
|
.HasColumnType("datetime2");
|
|||
|
|
|||
|
b.Property<double>("Sum")
|
|||
|
.HasColumnType("float");
|
|||
|
|
|||
|
b.HasKey("ID");
|
|||
|
|
|||
|
b.HasIndex("ClientID");
|
|||
|
|
|||
|
b.ToTable("Orders");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("ElectronicsShopDataBaseImplement.Models.OrderProduct", b =>
|
|||
|
{
|
|||
|
b.Property<int>("Id")
|
|||
|
.ValueGeneratedOnAdd()
|
|||
|
.HasColumnType("int");
|
|||
|
|
|||
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
|||
|
|
|||
|
b.Property<int>("Count")
|
|||
|
.HasColumnType("int");
|
|||
|
|
|||
|
b.Property<int>("OrderID")
|
|||
|
.HasColumnType("int");
|
|||
|
|
|||
|
b.Property<int>("ProductID")
|
|||
|
.HasColumnType("int");
|
|||
|
|
|||
|
b.Property<int?>("_productID")
|
|||
|
.HasColumnType("int");
|
|||
|
|
|||
|
b.HasKey("Id");
|
|||
|
|
|||
|
b.HasIndex("ProductID");
|
|||
|
|
|||
|
b.HasIndex("_productID");
|
|||
|
|
|||
|
b.ToTable("OrderProducts");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("ElectronicsShopDataBaseImplement.Models.Paymeant", b =>
|
|||
|
{
|
|||
|
b.Property<int>("ID")
|
|||
|
.ValueGeneratedOnAdd()
|
|||
|
.HasColumnType("int");
|
|||
|
|
|||
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("ID"));
|
|||
|
|
|||
|
b.Property<int>("OrderID")
|
|||
|
.HasColumnType("int");
|
|||
|
|
|||
|
b.Property<int>("PayOption")
|
|||
|
.HasColumnType("int");
|
|||
|
|
|||
|
b.Property<int?>("PaymentID")
|
|||
|
.HasColumnType("int");
|
|||
|
|
|||
|
b.Property<int>("ProductID")
|
|||
|
.HasColumnType("int");
|
|||
|
|
|||
|
b.Property<double>("SumPayment")
|
|||
|
.HasColumnType("float");
|
|||
|
|
|||
|
b.HasKey("ID");
|
|||
|
|
|||
|
b.HasIndex("PaymentID");
|
|||
|
|
|||
|
b.ToTable("Paymeants");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("ElectronicsShopDataBaseImplement.Models.Product", b =>
|
|||
|
{
|
|||
|
b.Property<int>("ID")
|
|||
|
.ValueGeneratedOnAdd()
|
|||
|
.HasColumnType("int");
|
|||
|
|
|||
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("ID"));
|
|||
|
|
|||
|
b.Property<int>("CostItemID")
|
|||
|
.HasColumnType("int");
|
|||
|
|
|||
|
b.Property<double>("Price")
|
|||
|
.HasColumnType("float");
|
|||
|
|
|||
|
b.Property<string>("ProductName")
|
|||
|
.IsRequired()
|
|||
|
.HasColumnType("nvarchar(max)");
|
|||
|
|
|||
|
b.HasKey("ID");
|
|||
|
|
|||
|
b.ToTable("Products");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("ElectronicsShopDataBaseImplement.Models.Order", b =>
|
|||
|
{
|
|||
|
b.HasOne("ElectronicsShopDataBaseImplement.Models.Client", null)
|
|||
|
.WithMany("Orders")
|
|||
|
.HasForeignKey("ClientID")
|
|||
|
.OnDelete(DeleteBehavior.Cascade)
|
|||
|
.IsRequired();
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("ElectronicsShopDataBaseImplement.Models.OrderProduct", b =>
|
|||
|
{
|
|||
|
b.HasOne("ElectronicsShopDataBaseImplement.Models.Order", "_order")
|
|||
|
.WithMany("Products")
|
|||
|
.HasForeignKey("ProductID")
|
|||
|
.OnDelete(DeleteBehavior.Cascade)
|
|||
|
.IsRequired();
|
|||
|
|
|||
|
b.HasOne("ElectronicsShopDataBaseImplement.Models.Product", "_product")
|
|||
|
.WithMany()
|
|||
|
.HasForeignKey("_productID");
|
|||
|
|
|||
|
b.Navigation("_order");
|
|||
|
|
|||
|
b.Navigation("_product");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("ElectronicsShopDataBaseImplement.Models.Paymeant", b =>
|
|||
|
{
|
|||
|
b.HasOne("ElectronicsShopDataBaseImplement.Models.Order", null)
|
|||
|
.WithMany("Payments")
|
|||
|
.HasForeignKey("PaymentID");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("ElectronicsShopDataBaseImplement.Models.Client", b =>
|
|||
|
{
|
|||
|
b.Navigation("Orders");
|
|||
|
});
|
|||
|
|
|||
|
modelBuilder.Entity("ElectronicsShopDataBaseImplement.Models.Order", b =>
|
|||
|
{
|
|||
|
b.Navigation("Payments");
|
|||
|
|
|||
|
b.Navigation("Products");
|
|||
|
});
|
|||
|
#pragma warning restore 612, 618
|
|||
|
}
|
|||
|
}
|
|||
|
}
|