DopInterfacePlatformContext.cs 402 B

1234567891011121314
  1. using DopInterfacePlatform.Entity;
  2. using Microsoft.EntityFrameworkCore;
  3. namespace DopInterfacePlatform
  4. {
  5. public class DopInterfacePlatformContext: DbContext
  6. {
  7. public DbSet<InterfacePlatformLog> InterfacePlatformLog { get; set; }
  8. public DopInterfacePlatformContext(DbContextOptions<DopInterfacePlatformContext> options)
  9. : base(options)
  10. {
  11. }
  12. }
  13. }