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