I have this method that is supposed to search collection of Employees by names. I pass the array of last names I want to find, and the method returns Employees with these names. Simple.
public IQueryable<Employee> GetEmployees(IEnumerable<string> lastNames)
{
var query = Employees.Where(e => lastNames.Contains(e.LastName));
return query;
}
Now I need to change the method so that I can pass array of partial lastnames, and get all Employees whose last names match the partial last names.
public IQueryable<Employee> GetEmployees(IEnumerable<string> partialLastNames)
{
// the code above will not work
}
So that If I have employees with these names: Sigourney Weaver, Amanada Beaver, John Smith, Jane Matheson
And I pass partialLastName arary ["aver", "math"], it will return me a query that will match: Sigourney Weaver, Amanada Beaver and Jane Matheson
How can I do that ?
Thanks.