代码拉取完成,页面将自动刷新
namespace HIS.EHC
{
using System;
using System.Data.Entity;
using System.Data.Entity.ModelConfiguration.Conventions;
using System.Linq;
public class EHCEntities : DbContext
{
//您的上下文已配置为从您的应用程序的配置文件(App.config 或 Web.config)
//使用“EHCEntities”连接字符串。默认情况下,此连接字符串针对您的 LocalDb 实例上的
//“HIS.EHC.EHCEntities”数据库。
//
//如果您想要针对其他数据库和/或数据库提供程序,请在应用程序配置文件中修改“EHCEntities”
//连接字符串。
public EHCEntities()
: base("name=EHCEntities")
{
}
public DbSet<Model.query._in.query_in_Root> in_roots { get; set; }
public DbSet<Model.query._out.query_out_Root> out_roots { get; set; }
public DbSet<Model.mf_ResultListItem> mfResultListItemes { get; set; }
public DbSet<Model.mf_Root> mf_Roots { get; set; }
public DbSet<Model.MF门诊摘要> mFs { get; set; }
//public DbSet<Card_listItem> Card_listItemes { get; set; }
//public DbSet<Model.NewCard_Input> NewCard_Inputes { get; set; }
//为您要在模型中包含的每种实体类型都添加 DbSet。有关配置和使用 Code First 模型
//的详细信息,请参阅 http://go.microsoft.com/fwlink/?LinkId=390109。
// public virtual DbSet<MyEntity> MyEntities { get; set; }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
//modelBuilder.Conventions.Add<DefaultTableConvention>();
//modelBuilder.Types().Configure(entity => entity.ToTable("Shop_" + entity.ClrType.Name));
//modelBuilder.Types().Configure(f => f.ToTable("log_" + f.ClrType));
modelBuilder.Entity<Model.query._in.query_in_Root>().ToTable("query_in");
modelBuilder.Entity<Model.query._out.query_out_Root>().ToTable("query_out");
base.OnModelCreating(modelBuilder);
}
public class StringMaxLengthConvertion : Convention
{
/// <summary>
/// 构造函数
/// </summary>
public StringMaxLengthConvertion()
{
//this.Properties().Having(p => (StringMaxLengthConvertion)p.GetCustomAttributes(typeof(StringMaxLengthConvertion), true).FirstOrDefault())
// .Configure((c, a) => c.HasColumnName(a.nae).HasMaxLength(a.ColumnMaxLength));
}
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。