2023-03-20 08:43:09 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using TravelCompanyDatabaseImplement.Models;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace TravelCompanyDatabaseImplement
|
|
|
|
|
{
|
|
|
|
|
public class TravelCompanyDatabase : DbContext
|
|
|
|
|
{
|
|
|
|
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
|
|
|
|
{
|
|
|
|
|
if (optionsBuilder.IsConfigured == false)
|
|
|
|
|
{
|
|
|
|
|
optionsBuilder.UseSqlServer(@"Data Source=localhost\SQLEXPRESS;Initial Catalog=TravelCompanyDatabaseFull;Integrated Security=True;MultipleActiveResultSets=True;;TrustServerCertificate=True");
|
|
|
|
|
}
|
|
|
|
|
base.OnConfiguring(optionsBuilder);
|
|
|
|
|
}
|
|
|
|
|
public virtual DbSet<Condition> Conditions { set; get; }
|
|
|
|
|
public virtual DbSet<Travel> Travels { set; get; }
|
|
|
|
|
public virtual DbSet<TravelCondition> TravelConditions { set; get; }
|
|
|
|
|
public virtual DbSet<Order> Orders { set; get; }
|
2023-04-28 00:02:22 +04:00
|
|
|
|
public virtual DbSet<Client> Clients { set; get; }
|
2023-03-20 08:43:09 +04:00
|
|
|
|
}
|
|
|
|
|
}
|