28 lines
964 B
C#
28 lines
964 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using PlumbingRepairDataBaseImplement.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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;");
|
|
}
|
|
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; }
|
|
}
|
|
}
|