Files
Assignment6/6/Data/PostgresApplicationDbContext.cs
Chris 2be781c3b1
Some checks failed
Build and Push Docker Image / docker (push) Failing after 18s
repo rework
2026-04-08 12:36:00 +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)
{
}
}