29 lines
1.0 KiB
C#
29 lines
1.0 KiB
C#
|
using AbstractPackageInstallationDatabaseImplement.Models;
|
|||
|
using AbstractSoftwareInstallationDatabaseImplement.Models;
|
|||
|
using Microsoft.EntityFrameworkCore;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace AbstractSoftwareInstallationDatabaseImplement
|
|||
|
{
|
|||
|
public class AbstractSoftwareInstallationDatabase : DbContext
|
|||
|
{
|
|||
|
protected override void OnConfiguring(DbContextOptionsBuilder
|
|||
|
optionsBuilder)
|
|||
|
{
|
|||
|
if (optionsBuilder.IsConfigured == false)
|
|||
|
{
|
|||
|
optionsBuilder.UseNpgsql("Host = localhost; Port = 5432; Database = SoftwareInstallation; Username = postgres; Password = postgres");
|
|||
|
}
|
|||
|
base.OnConfiguring(optionsBuilder);
|
|||
|
}
|
|||
|
public virtual DbSet<Software> Softwares { set; get; }
|
|||
|
public virtual DbSet<Package> Packages { set; get; }
|
|||
|
public virtual DbSet<PackageSoftware> PackageSoftwares { set; get; }
|
|||
|
public virtual DbSet<Order> Orders { set; get; }
|
|||
|
}
|
|||
|
}
|