20 lines
702 B
C#
20 lines
702 B
C#
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<Db.Employee> Employees { get; set; }
|
|
}
|
|
}
|