public static bool In<T>(this T source, params T[] list){ return list.Contains(source);}
var result= sourceCollection.Where(s => s.In("x", "y", "z"));
Login to post response