using Microsoft.EntityFrameworkCore; namespace DigitalData.MessagingService.Infrastructure.Persistence; /// /// Entity Framework Core DbContext for MessagingService. /// IMPORTANT: This context maps to a LEGACY database - NO schema modifications allowed! /// public class MessagingServiceDbContext(DbContextOptions options) : DbContext(options) { }