28 lines
1.1 KiB
C#
28 lines
1.1 KiB
C#
using ElectronicsShopDataBaseImplement.Models;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ElectronicsShopDataBaseImplement
|
|
{
|
|
public class Database : DbContext
|
|
{
|
|
//DESKTOP-E2VPEN3
|
|
//DESKTOP-O0N00SH
|
|
protected override void OnConfiguring(DbContextOptionsBuilder
|
|
optionsBuilder)
|
|
{
|
|
if (optionsBuilder.IsConfigured == false) {
|
|
optionsBuilder.UseSqlServer(@"Data Source=DESKTOP-E2VPEN3\SQLEXPRESS;Initial Catalog=ElectronicsShopDatabase;Integrated Security=True;MultipleActiveResultSets=True;;TrustServerCertificate=True");
|
|
}
|
|
base.OnConfiguring(optionsBuilder);
|
|
}
|
|
public virtual DbSet<Client> Clients { set; get; }
|
|
public virtual DbSet<Product> Products { set; get; }
|
|
public virtual DbSet<Order> Orders { set; get; }
|
|
public virtual DbSet<OrderProduct> OrderProducts { set; get; }
|
|
public virtual DbSet<Employee> Employees { set; get; }
|
|
public virtual DbSet<CostItem> CostItems { set; get; }
|
|
public virtual DbSet<Paymeant> Paymeants { get; set; }
|
|
}
|
|
}
|