22 lines
456 B
C#
22 lines
456 B
C#
|
using Microsoft.EntityFrameworkCore;
|
|||
|
using Npgsql;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace CH.Dal;
|
|||
|
|
|||
|
public class CHDbContext(DbContextOptions options) : CHDbScaffoldedContext(options)
|
|||
|
{
|
|||
|
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
|||
|
{
|
|||
|
|
|||
|
}
|
|||
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
|||
|
{
|
|||
|
return;
|
|||
|
}
|
|||
|
}
|