2024-03-20 10:21:07 +04:00
|
|
|
|
using GarmentFactoryDatabaseImplement.Models;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace GarmentFactoryDatabaseImplement
|
|
|
|
|
{
|
|
|
|
|
public class GarmentFactoryDatabase : DbContext
|
|
|
|
|
{
|
|
|
|
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
|
|
|
|
{
|
|
|
|
|
if (optionsBuilder.IsConfigured == false)
|
|
|
|
|
{
|
|
|
|
|
optionsBuilder.UseSqlServer(@"Data Source=DESKTOP-1I7RVNF\SQLEXPRESS;Initial Catalog=GarmentFactoryDatabase;Integrated Security=True;MultipleActiveResultSets=True;;TrustServerCertificate=True");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
base.OnConfiguring(optionsBuilder);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual DbSet<Component> Components { set; get; }
|
|
|
|
|
|
|
|
|
|
public virtual DbSet<Textile> Textiles { set; get; }
|
|
|
|
|
|
|
|
|
|
public virtual DbSet<TextileComponent> TextileComponents { set; get; }
|
|
|
|
|
|
|
|
|
|
public virtual DbSet<Order> Orders { set; get; }
|
2024-04-11 13:43:22 +04:00
|
|
|
|
|
|
|
|
|
public virtual DbSet<Client> Clients { set; get; }
|
2024-04-17 10:42:00 +04:00
|
|
|
|
|
|
|
|
|
public virtual DbSet<Implementer> Implementers { set; get; }
|
|
|
|
|
}
|
2024-03-20 10:21:07 +04:00
|
|
|
|
}
|