272 lines
9.2 KiB
C#
272 lines
9.2 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("20240724033824_Migration03")]
|
|
partial class Migration03
|
|
{
|
|
/// <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>("CostNum")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<int>("EmployeeID")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<double>("Price")
|
|
.HasColumnType("float");
|
|
|
|
b.HasKey("ID");
|
|
|
|
b.HasIndex("EmployeeID");
|
|
|
|
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.HasKey("Id");
|
|
|
|
b.HasIndex("OrderID");
|
|
|
|
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>("ClientID")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateTime>("DatePaymeant")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<int>("OrderID")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<int>("PayOption")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<double>("SumPayment")
|
|
.HasColumnType("float");
|
|
|
|
b.HasKey("ID");
|
|
|
|
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.HasIndex("CostItemID");
|
|
|
|
b.ToTable("Products");
|
|
});
|
|
|
|
modelBuilder.Entity("ElectronicsShopDataBaseImplement.Models.CostItem", b =>
|
|
{
|
|
b.HasOne("ElectronicsShopDataBaseImplement.Models.Employee", "Employee")
|
|
.WithMany()
|
|
.HasForeignKey("EmployeeID")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Employee");
|
|
});
|
|
|
|
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("OrderID")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.HasOne("ElectronicsShopDataBaseImplement.Models.Product", "_product")
|
|
.WithMany()
|
|
.HasForeignKey("ProductID")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("_order");
|
|
|
|
b.Navigation("_product");
|
|
});
|
|
|
|
modelBuilder.Entity("ElectronicsShopDataBaseImplement.Models.Product", b =>
|
|
{
|
|
b.HasOne("ElectronicsShopDataBaseImplement.Models.CostItem", "CostItem")
|
|
.WithMany()
|
|
.HasForeignKey("CostItemID")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("CostItem");
|
|
});
|
|
|
|
modelBuilder.Entity("ElectronicsShopDataBaseImplement.Models.Client", b =>
|
|
{
|
|
b.Navigation("Orders");
|
|
});
|
|
|
|
modelBuilder.Entity("ElectronicsShopDataBaseImplement.Models.Order", b =>
|
|
{
|
|
b.Navigation("Products");
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|