Files
Assignment6/Data/PostgresApplicationDbContext.cs
Chris d48d2a7b79
Some checks failed
Build and Push Docker Image / docker (push) Has been cancelled
initial push
2026-04-07 21:09:18 +00:00

12 lines
271 B
C#

using Microsoft.EntityFrameworkCore;
namespace Example.Data;
public sealed class PostgresApplicationDbContext : ApplicationDbContext
{
public PostgresApplicationDbContext(DbContextOptions<PostgresApplicationDbContext> options)
: base(options)
{
}
}