using DopInterfacePlatform.Entity; using Microsoft.EntityFrameworkCore; namespace DopInterfacePlatform { public class DopInterfacePlatformContext: DbContext { public DbSet InterfacePlatformLog { get; set; } public DopInterfacePlatformContext(DbContextOptions options) : base(options) { } } }