139 lines
5.2 KiB
C#
139 lines
5.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using demo0411.Models;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace demo0411.Context;
|
|
|
|
public partial class User19Context : DbContext
|
|
{
|
|
public User19Context()
|
|
{
|
|
}
|
|
|
|
public User19Context(DbContextOptions<User19Context> options)
|
|
: base(options)
|
|
{
|
|
}
|
|
|
|
public virtual DbSet<Partner> Partners { get; set; }
|
|
|
|
public virtual DbSet<PartnerProduct> PartnerProducts { get; set; }
|
|
|
|
public virtual DbSet<PartnerType> PartnerTypes { get; set; }
|
|
|
|
public virtual DbSet<Product> Products { get; set; }
|
|
|
|
public virtual DbSet<ProductType> ProductTypes { get; set; }
|
|
|
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
|
#warning To protect potentially sensitive information in your connection string, you should move it out of source code. You can avoid scaffolding the connection string by using the Name= syntax to read it from configuration - see https://go.microsoft.com/fwlink/?linkid=2131148. For more guidance on storing connection strings, see https://go.microsoft.com/fwlink/?LinkId=723263.
|
|
=> optionsBuilder.UseNpgsql("Host=45.67.56.214;Username=user19;Password=oplwLVnn;Port=5454;Database=user19");
|
|
|
|
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
|
{
|
|
modelBuilder.Entity<Partner>(entity =>
|
|
{
|
|
entity.HasKey(e => e.Id).HasName("partner_pk");
|
|
|
|
entity.ToTable("partner", "Product");
|
|
|
|
entity.Property(e => e.Id).HasColumnName("id");
|
|
entity.Property(e => e.Addres)
|
|
.HasColumnType("character varying")
|
|
.HasColumnName("addres");
|
|
entity.Property(e => e.Director)
|
|
.HasColumnType("character varying")
|
|
.HasColumnName("director");
|
|
entity.Property(e => e.Email)
|
|
.HasColumnType("character varying")
|
|
.HasColumnName("email");
|
|
entity.Property(e => e.Inn)
|
|
.HasColumnType("character varying")
|
|
.HasColumnName("inn");
|
|
entity.Property(e => e.Name)
|
|
.HasColumnType("character varying")
|
|
.HasColumnName("name");
|
|
entity.Property(e => e.PartnerTypeId).HasColumnName("partner_type_id");
|
|
entity.Property(e => e.Phone)
|
|
.HasColumnType("character varying")
|
|
.HasColumnName("phone");
|
|
entity.Property(e => e.Raiting).HasColumnName("raiting");
|
|
|
|
entity.HasOne(d => d.PartnerType).WithMany(p => p.Partners)
|
|
.HasForeignKey(d => d.PartnerTypeId)
|
|
.HasConstraintName("partner_partner_type_fk");
|
|
});
|
|
|
|
modelBuilder.Entity<PartnerProduct>(entity =>
|
|
{
|
|
entity.HasKey(e => e.Id).HasName("partner_products_pk");
|
|
|
|
entity.ToTable("partner_products", "Product");
|
|
|
|
entity.Property(e => e.Id).HasColumnName("id");
|
|
entity.Property(e => e.Amount).HasColumnName("amount");
|
|
entity.Property(e => e.PartnerId).HasColumnName("partner_id");
|
|
entity.Property(e => e.ProductId).HasColumnName("product_id");
|
|
entity.Property(e => e.SaleDate).HasColumnName("sale_date");
|
|
|
|
entity.HasOne(d => d.Partner).WithMany(p => p.PartnerProducts)
|
|
.HasForeignKey(d => d.PartnerId)
|
|
.HasConstraintName("partner_products_partner_fk");
|
|
|
|
entity.HasOne(d => d.Product).WithMany(p => p.PartnerProducts)
|
|
.HasForeignKey(d => d.ProductId)
|
|
.HasConstraintName("partner_products_product_fk");
|
|
});
|
|
|
|
modelBuilder.Entity<PartnerType>(entity =>
|
|
{
|
|
entity.HasKey(e => e.Id).HasName("partner_type_pk");
|
|
|
|
entity.ToTable("partner_type", "Product");
|
|
|
|
entity.Property(e => e.Id).HasColumnName("id");
|
|
entity.Property(e => e.Name)
|
|
.HasColumnType("character varying")
|
|
.HasColumnName("name");
|
|
});
|
|
|
|
modelBuilder.Entity<Product>(entity =>
|
|
{
|
|
entity.HasKey(e => e.Id).HasName("product_pk");
|
|
|
|
entity.ToTable("product", "Product");
|
|
|
|
entity.Property(e => e.Id)
|
|
.ValueGeneratedNever()
|
|
.HasColumnName("id");
|
|
entity.Property(e => e.MinCost).HasColumnName("min_cost");
|
|
entity.Property(e => e.Name)
|
|
.HasColumnType("character varying")
|
|
.HasColumnName("name");
|
|
entity.Property(e => e.TypeId).HasColumnName("type_id");
|
|
|
|
entity.HasOne(d => d.Type).WithMany(p => p.Products)
|
|
.HasForeignKey(d => d.TypeId)
|
|
.HasConstraintName("product_product_type_fk");
|
|
});
|
|
|
|
modelBuilder.Entity<ProductType>(entity =>
|
|
{
|
|
entity.HasKey(e => e.Id).HasName("product_type_pk");
|
|
|
|
entity.ToTable("product_type", "Product");
|
|
|
|
entity.Property(e => e.Id).HasColumnName("id");
|
|
entity.Property(e => e.Coefficient).HasColumnName("coefficient");
|
|
entity.Property(e => e.Name)
|
|
.HasColumnType("character varying")
|
|
.HasColumnName("name");
|
|
});
|
|
|
|
OnModelCreatingPartial(modelBuilder);
|
|
}
|
|
|
|
partial void OnModelCreatingPartial(ModelBuilder modelBuilder);
|
|
}
|