26 lines
894 B
C#
26 lines
894 B
C#
|
using SecureShopDatabaseImplement.Models;
|
|||
|
using Microsoft.EntityFrameworkCore;
|
|||
|
|
|||
|
namespace SecureShopDatabaseImplement
|
|||
|
{
|
|||
|
public class SecureShopDatabase : DbContext
|
|||
|
{
|
|||
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
|||
|
{
|
|||
|
if (optionsBuilder.IsConfigured == false)
|
|||
|
{
|
|||
|
optionsBuilder.UseSqlServer(@"Data Source=DESKTOP-E9D4764\SQLEXPRESS;Initial Catalog=SecureShopDatabase;Integrated Security=True;MultipleActiveResultSets=True;;TrustServerCertificate=True");
|
|||
|
}
|
|||
|
base.OnConfiguring(optionsBuilder);
|
|||
|
}
|
|||
|
|
|||
|
public virtual DbSet<Facilities> Facilitiess { set; get; }
|
|||
|
|
|||
|
public virtual DbSet<Secure> Secures { set; get; }
|
|||
|
|
|||
|
public virtual DbSet<SecureFacilities> SecureFacilitiess { set; get; }
|
|||
|
|
|||
|
public virtual DbSet<Order> Orders { set; get; }
|
|||
|
}
|
|||
|
}
|