using System; using System.Collections.Generic; using Microsoft.EntityFrameworkCore; using $REPO_NAME.Models; namespace $REPO_NAME; public partial class $REPO_NAME_DBContext : DbContext { public DbSet Channels { get; set; } public $REPO_NAME_DBContext() { } public $REPO_NAME_DBContext(DbContextOptions<$REPO_NAME_DBContext> options) : base(options) { } protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) => optionsBuilder.UseNpgsql(Shared.DBConnectionString); }