0
我首先使用實體框架代碼。 我有兩個非常類似的虛擬ICollection屬性類。 這裏是集合類其中之一:如何從虛擬ICollection中返回EnityCollection?
public class Name
{
public int Id{ get; set;}
[MaxLength(64)]
[Index(IsUnique = true)]
[Required]
public string Value { get; set; }
public virtual ICollection<NameVariant> Variants { get; set; }
}
public class NameVariant
{
public int Id{ get; set;}
[MaxLength(64)]
[Index(IsUnique = true)]
[Required]
public string Value { get; set; }
public int ParentId { get; set; }
public virtual Name Parent { get; set; }
}
我在另外一個案例和HashSet的獲得EntityCollection的變體。 它取決於什麼?我如何從這兩個類獲得EnityCollection?