33 lines
1.3 KiB
C#
Raw Normal View History

2024-03-10 21:20:18 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using TypographyDatabaseImplements.Models;
using Microsoft.EntityFrameworkCore;
using TypographyDatabaseImplement.Models;
namespace TypographyDatabaseImplements
{
public class TypographyDatabase: DbContext
{
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
if (optionsBuilder.IsConfigured == false)
{
optionsBuilder.UseSqlServer(@"Data Source = .\SQLEXPRESS;
2024-04-22 12:36:19 +04:00
Initial Catalog=TypographyDatabaseHardFull;
2024-03-10 21:20:18 +04:00
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; }
2024-04-22 12:36:19 +04:00
public virtual DbSet<Shop> Shops { set; get; }
public virtual DbSet<ShopPrinted> ShopPrinteds { set; get; }
2024-03-10 21:20:18 +04:00
}
}