using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ModbusDemo.Model { public class ModbusDbContext:DbContext { public ModbusDbContext(DbContextOptions options) :base(options) { } public DbSet ModbusLog { get; set; } } }