using CZFW.Core; using CZFW.Core.Security; using CZFW.Framework.Model.Entity; using CZKJ.GBRS2.Entity; using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace CZKJ.GBRS2.Web { public class DbGen : DbContext { protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) { optionsBuilder.UseMySQL(ConfigHelper.GetValue("ConnectionStrings:Development")); } public DbSet navigation { get; set; } public DbSet dict { get; set; } public DbSet dictItem { get; set; } public DbSet gallery { get; set; } public DbSet userinfo { get; set; } public DbSet navMpping { get; set; } public DbSet userOperationRecord { get; set; } public DbSet seoShare { get; set; } public DbSet sysConfig { get; set; } public DbSet type { get; set; } public DbSet publicinfor { get; set; } public DbSet position { get; set; } public DbSet article { get; set; } public DbSet operationLog { get; set; } public DbSet product { get; set; } public DbSet customer { get; set; } public DbSet priceAnnouncement { get; set; } } }