1 Star 0 Fork 2

智锋科技/PIP_Demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
EHCEntities.cs 2.52 KB
一键复制 编辑 原始数据 按行查看 历史
李涛 提交于 2019-10-30 11:38 . code first基本实现
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));
}
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/elfbobo_admin/PIP_Demo.git
git@gitee.com:elfbobo_admin/PIP_Demo.git
elfbobo_admin
PIP_Demo
PIP_Demo
master

搜索帮助