29 lines
1.1 KiB
C#
29 lines
1.1 KiB
C#
using Microsoft.EntityFrameworkCore;
|
|
using ServiceStationsDataBaseImplement.Implements;
|
|
using ServiceStationsDataBaseImplement.Models;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
|
|
namespace ServiceStationsDataBaseImplement
|
|
{
|
|
public class Database : DbContext
|
|
{
|
|
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<CategoryWork> CategoryWorks { set; get; }
|
|
public virtual DbSet<ClientWork> ClientsWorks { set; get; }
|
|
public virtual DbSet<Executor> Executors { set; get; }
|
|
public virtual DbSet<Report> Reports { set; get; }
|
|
public virtual DbSet<Work> Works { set; get; }
|
|
|
|
|
|
}
|
|
} |