18 lines
655 B
C#
18 lines
655 B
C#
|
using Microsoft.EntityFrameworkCore;
|
|||
|
|
|||
|
namespace SecuritySystemDatabaseImplement
|
|||
|
{
|
|||
|
public class SecuritySystemDatabase : DbContext
|
|||
|
{
|
|||
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
|||
|
{
|
|||
|
if (optionsBuilder.IsConfigured == false)
|
|||
|
{
|
|||
|
optionsBuilder.UseSqlServer(@"Data Source=localhost\SQLEXPRESS;Initial Catalog=PolyclinicDatabase;Integrated Security=True;MultipleActiveResultSets=True;;TrustServerCertificate=True");
|
|||
|
}
|
|||
|
base.OnConfiguring(optionsBuilder);
|
|||
|
}
|
|||
|
//public virtual DbSet<Component> Components { set; get; }
|
|||
|
}
|
|||
|
}
|