PIbd-23_Konovalov_A._V._Typ.../Typography/TypographyDatabaseImplement/TypographyDatabase.cs
2024-06-20 20:05:04 +04:00

25 lines
1.1 KiB
C#

using Microsoft.EntityFrameworkCore;
using System.Collections.Generic;
using TypographyDatabaseImplement.Models;
namespace TypographyDatabaseImplement
{
public class TypographyDatabase : DbContext
{
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
if (optionsBuilder.IsConfigured == false)
{
optionsBuilder.UseSqlServer(@"Data Source=localhost\SQLEXPRESS;Initial Catalog=Typographylab7rpp;Integrated Security=True;MultipleActiveResultSets=True;;TrustServerCertificate=True");
}
base.OnConfiguring(optionsBuilder);
}
public virtual DbSet<Component> Components { set; get; }
public virtual DbSet<Printed> Printeds { set; get; }
public virtual DbSet<PrintedComponent> PrintedComponents { set; get; }
public virtual DbSet<Order> Orders { set; get; }
public virtual DbSet<Client> Clients { set; get; }
public virtual DbSet<Implementer> Implementers { set; get; }
public virtual DbSet<MessageInfo> Messages { set; get; }
}
}