Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
|
- using Microsoft.EntityFrameworkCore;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace ModbusDemo.Model
- {
- /// <summary>
- /// 操作数据库的上下文
- /// </summary>
- public class ModbusDbContext:DbContext
- {
- protected ModbusDbContext()
- {
- }
- public ModbusDbContext(DbContextOptions<ModbusDbContext> options) :base(options)
- {
-
- }
-
- public DbSet<ModbusLog> ModbusLog { get; set; }
- }
- }
|