将多个表映射到实体框架中的单个实体类

时间:2011-07-12 20:20:25

标签: c# entity-framework asp.net-mvc-3 c#-4.0 entity-framework-4.1

在此之前被标记为重复,我已检查了其他相关帖子,但他们没有回答我的问题。

我正在处理一个遗留数据库,该数据库有两个具有1:1关系的表。 目前,我为每个定义的表都有一种类型(1Test:1Result) 我想将这些特定的表合并为一个类。

当前类型看起来像这样

public class Result 
{
    public          string      Id                  { get; set; }
    public          string      Name                { get; set; }
    public          string      Text                { get; set; }
    public          string      Units               { get; set; }
    public          bool        OutOfRange          { get; set; }
    public          string      Status              { get; set; }
    public          string      Minimum             { get; set; }
    public          string      Maximum             { get; set; }

    public virtual  Instrument  InstrumentUsed      { get; set; }

    public virtual  Test        ForTest             { get; set; }
}


public class Test
{
    public          int     Id            { get; set; }
    public          string  Status        { get; set; }
    public          string  Analysis      { get; set; }
    public          string  ComponentList { get; set; }
    public virtual  Sample  ForSample     { get; set; }
    public virtual  Result  TestResult    { get; set; }
}

我希望它们看起来像这样

public class TestResult
{
    public          int        Id              { get; set; }
    public          string     Status          { get; set; }
    public          string     Analysis        { get; set; }
    public          string     ComponentList   { get; set; }
    public          string     TestName        { get; set; }
    public          string     Text            { get; set; }
    public          string     Units           { get; set; }
    public          bool       OutOfRange      { get; set; }
    public          string     Status          { get; set; }
    public          string     Minimum         { get; set; }
    public          string     Maximum         { get; set; }

    public virtual  Instrument InstrumentUsed { get; set; }
}

我目前正在使用流畅的API将这些API映射到我们的旧Oracle数据库。

将这些组合成单个班级的最佳方法是什么? 请注意,这是一个旧数据库。更改表格不是一种选择,在项目的这一点上创建视图不是一个可行的解决方案。

1 个答案:

答案 0 :(得分:36)

如果两个表中都有相同的主键,则可以使用Entity Splitting来实现此目的。

  modelBuilder.Entity<TestResult>()
    .Map(m =>
      {
        m.Properties(t => new { t.Name, t.Text, t.Units /*other props*/ });
        m.ToTable("Result");
      })
    .Map(m =>
      {
        m.Properties(t => new { t.Status, t.Analysis /*other props*/});
        m.ToTable("Test");
      });

这是一个有用的article