2024-03-25 22:59:49 +04:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using ConfectioneryDatabaseImplement.Models;
|
|
|
|
|
|
|
|
|
|
namespace ConfectioneryDatabaseImplement
|
|
|
|
|
{
|
|
|
|
|
public class ConfectioneryDatabase : DbContext
|
|
|
|
|
{
|
|
|
|
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
|
|
|
|
{
|
|
|
|
|
if (optionsBuilder.IsConfigured == false)
|
|
|
|
|
{
|
2024-05-06 15:11:40 +04:00
|
|
|
|
optionsBuilder.UseSqlServer(@"Data Source=DESKTOP-0CI5KVE\SQLEXPRESS;Initial Catalog=ConfectioneryDatabase3;Integrated Security=True;MultipleActiveResultSets=True;;TrustServerCertificate=True");
|
2024-03-25 22:59:49 +04:00
|
|
|
|
}
|
|
|
|
|
base.OnConfiguring(optionsBuilder);
|
|
|
|
|
}
|
|
|
|
|
public virtual DbSet<Component> Components { set; get; }
|
|
|
|
|
public virtual DbSet<Pastry> Pastries { set; get; }
|
|
|
|
|
public virtual DbSet<PastryComponent> PastryComponents { set; get; }
|
|
|
|
|
public virtual DbSet<Order> Orders { set; get; }
|
2024-04-20 23:00:09 +04:00
|
|
|
|
public virtual DbSet<Client> Clients { set; get; }
|
2024-05-04 23:59:55 +04:00
|
|
|
|
public virtual DbSet<Implementer> Implementers { set; get; }
|
2024-05-05 18:22:23 +04:00
|
|
|
|
public virtual DbSet<MessageInfo> MessagesInfo { get; set; }
|
2024-03-25 22:59:49 +04:00
|
|
|
|
}
|
|
|
|
|
}
|