2023-03-12 16:32:00 +04:00
|
|
|
|
using AutomobilePlantDatabaseImplement.Models;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Numerics;
|
|
|
|
|
using System.Reflection.Metadata;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace AutomobilePlantDatabaseImplement
|
|
|
|
|
{
|
|
|
|
|
public class AutomobilePlantDatabase : DbContext
|
|
|
|
|
{
|
|
|
|
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
|
|
|
|
{
|
|
|
|
|
if (optionsBuilder.IsConfigured == false)
|
|
|
|
|
{
|
|
|
|
|
optionsBuilder.UseSqlServer(@"Server=(localdb)\mssqllocaldb;Initial Catalog=AutomobilePlantDatabaseFull;Integrated Security=True;MultipleActiveResultSets=True;TrustServerCertificate=True");
|
|
|
|
|
}
|
|
|
|
|
base.OnConfiguring(optionsBuilder);
|
|
|
|
|
}
|
|
|
|
|
public virtual DbSet<Component> Components { set; get; }
|
|
|
|
|
public virtual DbSet<Car> Cars { set; get; }
|
|
|
|
|
public virtual DbSet<CarComponent> CarComponents { set; get; }
|
|
|
|
|
public virtual DbSet<Order> Orders { set; get; }
|
2023-03-27 00:58:58 +04:00
|
|
|
|
public virtual DbSet<Client> Clients { set; get; }
|
2023-04-09 23:59:17 +04:00
|
|
|
|
public virtual DbSet<Implementer> Implementers { set; get; }
|
2023-03-12 16:32:00 +04:00
|
|
|
|
}
|
|
|
|
|
}
|