123456789101112131415161718192021222324 |
- using Central.Control.WebApi.Models;
- using System;
- using System.Collections.Generic;
- using System.Data.Entity;
- using System.Linq;
- using System.Web;
- namespace Central.Control.WebApi.EFDbContext
- {
- public class CentralControlContext : DbContext, IDbContext // , IDependency
- {
- public CentralControlContext() : base("name=CentralControlSystem")
- {
-
- }
- /// <summary>
- /// 设备表
- /// </summary>
- public DbSet<SYS_DEVICE> SYS_DEVICE { get; set; }
- }
- }
|