generated from greyn/_template-service
18 lines
532 B
C#
18 lines
532 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using test274.Models;
|
|
|
|
namespace test274;
|
|
|
|
public partial class greynsvcDBContext : DbContext
|
|
{
|
|
public DbSet<GreetCounter> Greets { get; set; }
|
|
|
|
public greynsvcDBContext() { }
|
|
public greynsvcDBContext(DbContextOptions<greynsvcDBContext> options) : base(options) { }
|
|
|
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
|
=> optionsBuilder.UseNpgsql(Shared.DBConnectionString);
|
|
}
|