从基础实体访问子实体的属性

时间:2013-02-25 16:36:07

标签: c# entity-framework

在我关于SO(Filter base entity from child entities' properties)的第一个问题后一年多以后,我遇到了类似的问题。

我有一个抽象基类型

public abstract class Base{
}

我有一些继承自此基本类型的子实体

public class Child1 : Base{
    public virtual NavigationProperty NavigationProperty {get; set; }
    public int NavigationPropertyId {get; set}
}

public class Child2 : Base{
    public virtual NavigationProperty NavigationProperty {get; set; }
}

子实体都具有NavigationProperty属性。而NavigationProperty类就像

 public class NavigationProperty{
    public virtual ICollection<Child1> Child1s {get; set;}
    public virtual Child2 Child2s {get; set;}
 }

Child2和NavigationProperty之间存在一对一的映射; Child1和NavigationProperty之间的一对多关系。为了使这些映射工作,我正在使用TPT。我的第一个问题是,我可以移动

  public NavigationProperty NavigationProperty {get; set; }

到基类?

我正在尝试这一整天并没有取得任何成功。如果不可能,我至少可以从基本类型访问NavigationProperty。在所有孩子都拥有这个属性后,我尝试了类似

的东西
 public abstract class Base{
      public abstract NavigationProperty NavigationProperty {get; set; }
 }
 ....
 public abstract class Child2{
      public override NavigationProperty NavigationProperty {get; set; }
 }

但实体框架会出现以下错误。

 Sequence contains more than one matching element 

我可以使用像

这样的东西
   public abstract class Base{
      public abstract NavigationProperty GetNavigationProperty();
   }

  public abstract class Child2{
      public override NavigationProperty NavigationProperty {get; set; }
      public override NavigationProperty GetNavigationProperty(){
           return NavigationProperty;
      }
 }

但我不想介绍这些额外的方法。他们是否有办法更优雅地实现这一目标?

编辑:

我忘了提到我已经尝试过[NotMapped]属性了。我想EF [NotMapped]属性也是继承的,所以子属性也没有映射。

我不希望Linq-to-Entites工作。我不希望能够使用导航属性查询基础实体。我只是想摆脱GetNavigationProperty和SetNavigationProperty方法。因此,当我尝试从基类访问NavigationProperty时,它应该被加载到内存中,就是这样。但是,经过一周的努力,我认为不可能。

3 个答案:

答案 0 :(得分:1)

  

我可以移动

     

public NavigationProperty NavigationProperty {get; set; }

     

到基类?

不,因为实体NavigationProperty中的反向属性引用Child1Child2,而不引用Base。导航属性始终必须是声明的类型的属性,并且不能移动到继承链中的基类型。

对于第二个问题,您可以尝试从映射中排除抽象导航属性:

public abstract class Base {
    [NotMapped]
    public abstract NavigationProperty NavigationProperty {get; set; }
}

(或modelBuilder.Entity<Base>().Ignore(b => b.NavigationProperty);使用Fluent API)。

您将无法在任何查询中使用Base.NavigationProperty,因为您不能将未映射的属性与LINQ-to-Entities一起使用。

答案 1 :(得分:1)

编辑x1 更新了代码以避免属性名称的文字字符串

有点反思似乎可以完成这项工作。课程设置;

public class NavigationProperty
{
    public NavigationProperty(string name)
    {
        Name = name;
    }

    public string Name { get; set; }
}

public abstract class Base
{
    public NavigationProperty NavigationProperty
    {
        get
        {
            string propertyName = MethodBase.GetCurrentMethod().Name.Replace("get_", string.Empty);
            PropertyInfo property = this.GetType().GetProperty(propertyName);
            if (property != null)
            {
                nav = (NavigationProperty)property.GetValue(this, new object[] { });
            }

            return nav;
        }
        set
        {
            string propertyName = MethodBase.GetCurrentMethod().Name.Replace("set_", string.Empty);
            PropertyInfo property = this.GetType().GetProperty(propertyName);
            if (property != null)
            {
                property.SetValue(this, value, new object[] { });
            }
        }
    }
}

public class Child1 : Base {
    public NavigationProperty NavigationProperty { get; set; }
    public int NavigationPropertyId { get; set; }
}

public class Child2 : Base{
    public NavigationProperty NavigationProperty { get; set; }
}

在您的代码中;

Child1 c1 = new Child1() { NavigationProperty = new NavigationProperty("child1Value") };
Child2 c2 = new Child2() { NavigationProperty = new NavigationProperty("child2Value") };
Base somebase = c1;
NavigationProperty childNav = somebase.NavigationProperty;
// childNav.Name now contains "child1Value"

这符合您的要求吗?它比使用abstract方法更笨重,但它至少意味着你不必重构每个子类

答案 2 :(得分:1)

在您的方案中找不到实体框架中的支持,您可以尝试这样做:

public interface IHasNavigationProperty {
    NavigationProperty NavigationProperty { get; }
}

public class Child1 : Base, IHasNavigationProperty {
    public NavigationProperty NavigationProperty { get; set; }
}

public class Base {
    public void AMethodThatDoesStuff() {
        if (this is IHasNavigationProperty) {
            var navigationProperty = ((IHasNavigationProperty)this).NavigationProperty;

            /* do stuff with NavigationProperty */
        }
    }
}