22 lines
827 B
C#
22 lines
827 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using PlumbingRepairDatabaseImplement.Models;
|
|
|
|
namespace PlumbingRepairDatabaseImplement
|
|
{
|
|
public class PlumbingRepairDataBase : DbContext
|
|
{
|
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
|
{
|
|
if (optionsBuilder.IsConfigured == false)
|
|
{
|
|
optionsBuilder.UseNpgsql(@"Host=localhost;Port=5432;Database=PlumbingRepairDatabaseFull;Username=postgres;Password=186qazwsx");
|
|
}
|
|
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; }
|
|
}
|
|
}
|