28 lines
1.1 KiB
C#
28 lines
1.1 KiB
C#
|
using Microsoft.EntityFrameworkCore;
|
|||
|
using ShipyardDatabaseImplement.Models;
|
|||
|
using Microsoft.EntityFrameworkCore.SqlServer;
|
|||
|
using ShipyardDataModels.Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace ShipyardDatabaseImplement
|
|||
|
{
|
|||
|
public class ShipyardDataBase : DbContext
|
|||
|
{
|
|||
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
|||
|
{
|
|||
|
if (optionsBuilder.IsConfigured == false)
|
|||
|
{
|
|||
|
optionsBuilder.UseSqlServer(@"Data Source=localhost\SQLEXPRESS;Initial Catalog=ShipyardDataBase;Integrated Security=True;MultipleActiveResultSets=True;;TrustServerCertificate=True");
|
|||
|
}
|
|||
|
base.OnConfiguring(optionsBuilder);
|
|||
|
}
|
|||
|
public virtual DbSet<Component> Components { set; get; }
|
|||
|
public virtual DbSet<Ship> Ships { set; get; }
|
|||
|
public virtual DbSet<ShipComponent> ShipComponents { set; get; }
|
|||
|
public virtual DbSet<Order> Orders { set; get; }
|
|||
|
}
|
|||
|
}
|