29 lines
1000 B
C#
29 lines
1000 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using FlowerShopDatabaseImplement.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FlowerShopDatabaseImplement
|
|
{
|
|
public class FlowerShopDataBase : DbContext
|
|
{
|
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
|
{
|
|
if (optionsBuilder.IsConfigured == false)
|
|
{
|
|
optionsBuilder.UseSqlServer(@"Data
|
|
Source=localhost\SQLEXPRESS;Initial Catalog=FlowerShopDatabaseFull;Integrated
|
|
Security=True;MultipleActiveResultSets=True;;TrustServerCertificate=True");
|
|
}
|
|
base.OnConfiguring(optionsBuilder);
|
|
}
|
|
public virtual DbSet<Component> Components { set; get; }
|
|
public virtual DbSet<Flower> Flowers { set; get; }
|
|
public virtual DbSet<FlowerComponent> FlowerComponents { set; get; }
|
|
public virtual DbSet<Order> Orders { set; get; }
|
|
}
|
|
}
|