2025-01-02 17:53:38 -05:00
|
|
|
|
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)
|
|
|
|
|
{
|
2025-01-03 15:38:14 -05:00
|
|
|
|
base.OnModelCreating(modelBuilder);
|
2025-01-02 17:53:38 -05:00
|
|
|
|
}
|
2025-01-03 15:38:14 -05:00
|
|
|
|
|
2025-01-02 17:53:38 -05:00
|
|
|
|
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|