Skip to content

Instantly share code, notes, and snippets.

@kmlprtsng
Created September 6, 2013 15:26
Show Gist options
  • Save kmlprtsng/6465459 to your computer and use it in GitHub Desktop.
Save kmlprtsng/6465459 to your computer and use it in GitHub Desktop.
Keyword search
if (Keywords.Trim().Length > 0)
{
string[] keywordFilterArr = Keywords.Split(' ');
query = keywordFilterArr.Where(str => str.Trim().Length > 0)
.Aggregate(query, (current, str) => current.Where(u => u.FirstName.Contains(str) || u.LastName.Contains(str)));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment