2024-04-24 08:55:33 +04:00
|
|
|
|
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)
|
|
|
|
|
{
|
2024-05-25 01:20:19 +04:00
|
|
|
|
optionsBuilder.UseSqlServer(@"Data Source=localhost\SQLEXPRESS;Initial Catalog=TypographyDatabase_5;Integrated Security=True;MultipleActiveResultSets=True;;TrustServerCertificate=True");
|
2024-04-24 08:55:33 +04:00
|
|
|
|
}
|
|
|
|
|
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; }
|
2024-05-25 01:20:19 +04:00
|
|
|
|
public virtual DbSet<Client> Clients { set; get; }
|
2024-04-24 08:55:33 +04:00
|
|
|
|
}
|
|
|
|
|
}
|