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