using Furion.DatabaseAccessor; using Microsoft.EntityFrameworkCore; using YBEE.EQM.Core; namespace YBEE.EQM.EntityFramework.Core; [AppDbContext("TQES", DbProvider.SqlServer)] public class TqesDbContext : AppDbContext { public TqesDbContext(DbContextOptions options) : base(options) { InsertOrUpdateIgnoreNullValues = true; } }