This repository has been archived on 2023-10-28. You can view files and clone it, but cannot push or open issues or pull requests.
pwt-0x01-ng/Models/Database/DBContext.cs
surtur e5b871c275
All checks were successful
continuous-integration/drone/push Build is passing
chore: adding postgre support [wip - batch 1]
2020-12-06 12:23:51 +01:00

18 lines
327 B
C#

using System;
using Microsoft.EntityFrameworkCore;
using Npgsql.EntityFrameworkCore;
using pwt_0x01_ng.Models;
namespace pwt0x01ng.Models.Database
{
public class DBContext : DbContext
{
public DBContext(DbContextOptions<DBContext> options) : base(options)
{
}
public DbSet<Carousel> Carousel { get; set; }
}
}