2024-03-26 15:23:03 +04:00
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
2024-04-29 13:44:53 +04:00
|
|
|
|
using SoftwareInstallationDatabaseImplement.Models;
|
2024-03-26 15:23:03 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace SoftwareInstallationDatabaseImplement
|
|
|
|
|
{
|
|
|
|
|
public class SoftwareInstallationDatabase : DbContext
|
|
|
|
|
{
|
|
|
|
|
protected override void OnConfiguring(DbContextOptionsBuilder
|
|
|
|
|
optionsBuilder)
|
|
|
|
|
{
|
|
|
|
|
if (optionsBuilder.IsConfigured == false)
|
|
|
|
|
{
|
2024-04-29 13:44:53 +04:00
|
|
|
|
optionsBuilder.UseSqlServer(@"Data Source=WIN-45522256GVD\SQLEXPRESS;Initial Catalog=SoftwareInstallationDatabase1;Integrated Security=True;MultipleActiveResultSets=True;TrustServerCertificate=True");
|
2024-03-26 15:23:03 +04:00
|
|
|
|
}
|
|
|
|
|
base.OnConfiguring(optionsBuilder);
|
|
|
|
|
}
|
|
|
|
|
public virtual DbSet<Component> Components { set; get; }
|
|
|
|
|
public virtual DbSet<Package> Packages { set; get; }
|
|
|
|
|
public virtual DbSet<PackageComponent> PackageComponents { set; get; }
|
|
|
|
|
public virtual DbSet<Order> Orders { set; get; }
|
2024-04-22 10:24:39 +04:00
|
|
|
|
public virtual DbSet<Client> Clients { set; get; }
|
2024-05-05 16:02:57 +04:00
|
|
|
|
public virtual DbSet<Implementer> Implementers { set; get; }
|
2024-03-26 15:23:03 +04:00
|
|
|
|
}
|
|
|
|
|
}
|