All checks were successful
Build and Push Docker Image / docker (push) Successful in 48s
12 lines
271 B
C#
12 lines
271 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Example.Data;
|
|
|
|
public sealed class PostgresApplicationDbContext : ApplicationDbContext
|
|
{
|
|
public PostgresApplicationDbContext(DbContextOptions<PostgresApplicationDbContext> options)
|
|
: base(options)
|
|
{
|
|
}
|
|
}
|