是否可以让InverseProperty引用复杂类型的属性

时间:2013-09-19 17:44:48

标签: entity-framework entity-relationship

是否可以让inversepperty引用复杂类型的属性?

这是一个人为的例子,显示了我想要做的结构:

public class MyType {
  public MyName Name { get; set; }
}

[ComplexType]
public class MyName {
   public int ProfileId {get; set;}
   [ForeignKey("ProfileId")]
   public Profile Profile{get; set;}
}

public class Profile
{
  [InverseProperty("Name.Profile")]
   public virtual IList<MyType> MyTypes{ get;set;}
}

0 个答案:

没有答案