0
ているICollectionのナビゲーションプロパティに一致するI次のコードは、最初のエンティティ持っている - 私は、文字列配列からタグのプロパティに基づいて連絡先を検索したいラムダ式は、配列
public class Contact
{
public Contact()
{
this.Tags = new HashSet<Tag>();
}
public int ContactId { get; set; }
public string ContactName { get; set; }
public virtual ICollection<Tag> Tags { get; set; }
}
public class Tag
{
public Tag()
{
this.Contacts = new HashSet<Contact>();
}
public int TagId { get; set; }
public string TagName { get; set; }
public virtual ICollection<Contact> Contacts { get; set; }
}
を。次のようなもの -
//string[] tags
Select from Db.Contacts where any Tag matched with any item in arrTags
私はそれがラムダでどのように実行できるかを理解できませんでした。どんな助け?
それはリストを選択を取得するには。しかし、リストを選択する必要があります。 –
@ s.k.paulは、更新された回答を参照してください。 –