30 lines
995 B
C#
30 lines
995 B
C#
using PlumbingRepairDatabaseImplement.Models;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace PlumbingRepairDatabaseImplement
|
|
{
|
|
public class PlumbingRepairDatabase : DbContext
|
|
{
|
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
|
{
|
|
if (optionsBuilder.IsConfigured == false)
|
|
{
|
|
optionsBuilder.UseSqlServer(@"Server=localhost\SQLEXPRESS;Database=PlumbingRepairHard;Trusted_Connection=True;");
|
|
}
|
|
base.OnConfiguring(optionsBuilder);
|
|
}
|
|
|
|
public virtual DbSet<Component> Components { set; get; }
|
|
|
|
public virtual DbSet<Work> Works { set; get; }
|
|
|
|
public virtual DbSet<WorkComponent> WorkComponents { set; get; }
|
|
|
|
public virtual DbSet<Order> Orders { set; get; }
|
|
|
|
public virtual DbSet<Shop> Shops { set; get; }
|
|
|
|
public virtual DbSet<ShopWork> ShopWorks { set; get; }
|
|
public virtual DbSet<Client> Clients { set; get; }
|
|
}
|
|
} |