I have List _locationData that contains a unique identifier uid which is a string. I want to use a LINQ query to return a List that have a uid that is contained within a List uids.
public IQueryable<Location> FindAll(List<string> uids)
{
return _locationData.AsQueryable().Where(z => z.uid.Any(v => uids.Equals(v)));
}