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