Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- 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
- {
-
- public ModbusDbContext()
- {
-
- }
-
- public ModbusDbContext(DbContextOptions<ModbusDbContext> options) :base(options)
- {
-
- }
-
- public DbSet<ModbusLog> ModbusLog { get; set; }
- }
- }
|