using Microsoft.EntityFrameworkCore; namespace DamageAssesment.Api.Employees.Db { public class EmployeeDbContext: DbContext { private IConfiguration _Configuration { get; set; } public EmployeeDbContext(DbContextOptions options, IConfiguration configuration) : base(options) { _Configuration = configuration; } protected override void OnConfiguring(DbContextOptionsBuilder options) { // connect to sql server with connection string from app settings options.UseSqlServer(_Configuration.GetConnectionString("EmployeeConnection")); } public DbSet Employees { get; set; } } }