37 lines
1.2 KiB
C#
37 lines
1.2 KiB
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace DamageAssesment.Api.Locations.Db
|
|
{
|
|
public class LocationDbContext : DbContext
|
|
{
|
|
private IConfiguration _Configuration { get; set; }
|
|
public LocationDbContext(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("LocationConnection"));
|
|
}
|
|
public DbSet<Db.Location> Locations { get; set; }
|
|
public DbSet<Db.Region> Regions { get; set; }
|
|
public LocationDbContext(DbContextOptions options) : base(options)
|
|
{
|
|
|
|
}
|
|
|
|
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
|
{
|
|
base.OnModelCreating(modelBuilder);
|
|
modelBuilder.Entity<Location>()
|
|
.Property(item => item.Id)
|
|
.ValueGeneratedOnAdd();
|
|
modelBuilder.Entity<Region>()
|
|
.Property(item => item.Id)
|
|
.ValueGeneratedOnAdd();
|
|
|
|
}
|
|
}
|
|
}
|