319 lines
11 KiB
C#
319 lines
11 KiB
C#
// <auto-generated />
|
|
using System;
|
|
using ElectronicsShopDataBaseImplement;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Metadata;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
|
|
#nullable disable
|
|
|
|
namespace ElectronicsShopDataBaseImplement.Migrations
|
|
{
|
|
[DbContext(typeof(Database))]
|
|
partial class DatabaseModelSnapshot : ModelSnapshot
|
|
{
|
|
protected override void BuildModel(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", (string)null);
|
|
});
|
|
|
|
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", (string)null);
|
|
});
|
|
|
|
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", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("ElectronicsShopDataBaseImplement.Models.MessageInfo", b =>
|
|
{
|
|
b.Property<string>("MessageID")
|
|
.HasColumnType("nvarchar(450)");
|
|
|
|
b.Property<string>("Body")
|
|
.IsRequired()
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<int?>("ClientID")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateTime>("DateDelivery")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("SenderName")
|
|
.IsRequired()
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("Subject")
|
|
.IsRequired()
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.HasKey("MessageID");
|
|
|
|
b.HasIndex("ClientID");
|
|
|
|
b.ToTable("Messages", (string)null);
|
|
});
|
|
|
|
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", (string)null);
|
|
});
|
|
|
|
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", (string)null);
|
|
});
|
|
|
|
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<int>("OrderID")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<int>("PayOption")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<int?>("PaymentID")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<double>("SumPayment")
|
|
.HasColumnType("float");
|
|
|
|
b.HasKey("ID");
|
|
|
|
b.HasIndex("PaymentID");
|
|
|
|
b.ToTable("Paymeants", (string)null);
|
|
});
|
|
|
|
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", (string)null);
|
|
});
|
|
|
|
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.MessageInfo", b =>
|
|
{
|
|
b.HasOne("ElectronicsShopDataBaseImplement.Models.Client", "Client")
|
|
.WithMany()
|
|
.HasForeignKey("ClientID");
|
|
|
|
b.Navigation("Client");
|
|
});
|
|
|
|
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.Paymeant", b =>
|
|
{
|
|
b.HasOne("ElectronicsShopDataBaseImplement.Models.Order", null)
|
|
.WithMany("Payments")
|
|
.HasForeignKey("PaymentID");
|
|
});
|
|
|
|
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("Payments");
|
|
|
|
b.Navigation("Products");
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|