32 lines
1003 B
C#
32 lines
1003 B
C#
using FurnitureAssemblyDatabaseImplement.Models;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace FurnitureAssemblyDatabaseImplement
|
|
{
|
|
public class FurnitureAssemblyDatabase : DbContext
|
|
{
|
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
|
{
|
|
if (optionsBuilder.IsConfigured == false)
|
|
{
|
|
optionsBuilder.UseSqlServer(@"Data Source=WIN-N21FHIN3LLR\SQLEXPRESS;Initial Catalog=AdDatabase4;Integrated Security=True;MultipleActiveResultSets=True;;TrustServerCertificate=True");
|
|
}
|
|
|
|
base.OnConfiguring(optionsBuilder);
|
|
}
|
|
|
|
public virtual DbSet<Komment> Komments { set; get; }
|
|
|
|
public virtual DbSet<Users> Userss { set; get; }
|
|
|
|
public virtual DbSet<UsersKomment> UsersKomments { set; get; }
|
|
|
|
public virtual DbSet<Ad> Ads { set; get; }
|
|
}
|
|
}
|