using System; using System.Collections.Generic; using System.Data.Entity; using System.Linq; using System.Web; namespace DSWeb.Areas.MvcShipping.DB { public class DingTalkContext : DbContext { public DingTalkContext() : base("DongShengDB") { } public DbSet Users { get; set; } public DbSet ParamSets { get; set; } } }