2017-08-27 53 views
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中完成它。任何幫助?

回答

2

你可以試試這個

var query = ctx.Contacts 
      .SelectMany(x => x.Tags) 
      .Where(z => YourTagArray.Contains(z.TagName); 

編輯:

爲了得到相匹配的聯繫人

var query = ctx.Contacts.Where(x => x.Tags.Any(t => YourTagArray.Contains(t.TagName)); 
+0

它選擇列表。但我需要選擇列表。 –

+0

@ s.k.paul查看更新的答案。 –