DamageAssessment_Backend/DamageAssesmentApi/DamageAssesment.Api.Attachments/Db/AttachmentsDbContext.cs

28 lines
1.0 KiB
C#
Raw Permalink Normal View History

2023-08-15 22:52:30 -05:00
using Microsoft.EntityFrameworkCore;
2023-08-18 16:14:41 -05:00
using Microsoft.Extensions.Configuration;
2023-08-15 22:52:30 -05:00
namespace DamageAssesment.Api.Attachments.Db
{
public class AttachmentsDbContext:DbContext
{
2023-08-18 16:14:41 -05:00
private IConfiguration _Configuration { get; set; }
public AttachmentsDbContext(DbContextOptions options, IConfiguration configuration) : base(options)
2023-08-15 22:52:30 -05:00
{
2023-08-18 16:14:41 -05:00
_Configuration = configuration;
}
protected override void OnConfiguring(DbContextOptionsBuilder options)
{
// connect to sql server with connection string from app settings
options.UseSqlServer(_Configuration.GetConnectionString("AttachmentConnection"));
2023-08-15 22:52:30 -05:00
}
public DbSet<Db.Attachment> Attachments { get; set; }
2023-08-25 17:24:46 -05:00
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
modelBuilder.Entity<Attachment>()
.Property(item => item.Id)
.ValueGeneratedOnAdd();
}
2023-08-15 22:52:30 -05:00
}
}