public static IQueryable<Institution> WithFunds(this IQueryable<Institution> query, IEnumerable<Fund> allowedFunds)
{
return query.
}
Institution.Fundsの「allowedFunds」リストに指定されたファンドのいずれかを持つすべての機関を返すクエリを取得したいと思います。助けてください。
私のクラス階層は次のようになります。
public partial class Institution
{
public int Id { get; set; }
public virtual ICollection<Fund> Funds { get; set; }
}
public partial class Fund
{
public int Id { get; set; }
public virtual Institution Institution { get; set; }
}