13 lines
327 B
C#
13 lines
327 B
C#
![]() |
using Microsoft.EntityFrameworkCore;
|
||
|
using Demka_Snova_1.Hardik.Conect.Dao;
|
||
|
namespace Demka_Snova_1.Hardik.Conect;
|
||
|
|
||
|
public class AppDbContext : DbContext
|
||
|
{
|
||
|
public DbSet<SotrudnikDao> sotrudnik { get; set; }
|
||
|
|
||
|
protected override void OnConfiguring(DbContextOptionsBuilder oB)
|
||
|
{
|
||
|
oB.UseSqlServer("Hoi");
|
||
|
}
|
||
|
}
|