0
我有以下代碼-第一實體 -Lambda表達式在ICollection的導航屬性匹配的數組
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
我找不出如何在lambda中完成它。任何幫助?
它選擇列表。但我需要選擇列表。 –
@ s.k.paul查看更新的答案。 –