1
0
mirror of https://github.com/XFox111/PhonebookService.git synced 2026-04-22 06:29:55 +03:00
Files
PhonebookService/PhonebookService.Infrastructure/PhonebookContext.cs
T
2023-02-22 16:05:59 +03:00

25 lines
892 B
C#

using Microsoft.EntityFrameworkCore;
using PhonebookService.Domain.Models;
using PhonebookService.Infrastructure.ModelConfigurations;
namespace PhonebookService.Infrastructure;
/// <summary>
/// Phonebook EF database context
/// </summary>
public class PhonebookContext : DbContext
{
public DbSet<PhonebookRecord> Records { get; set; }
#pragma warning disable CS8618 // Non-nullable property must contain a non-null value when exiting constructor. Consider declaring the property as nullable.
public PhonebookContext(DbContextOptions<PhonebookContext> options) : base(options) {}
#pragma warning restore CS8618 // Non-nullable property must contain a non-null value when exiting constructor. Consider declaring the property as nullable.
protected override void OnModelCreating(ModelBuilder builder)
{
builder.ApplyConfiguration(new PhonebookRecordEntityTypeConfiguration());
}
}