Hi there, wondering if anyone can help. This works, but I was wondering how it would look in Lambda instead (Just curious !)
Codes is simply an array of id's and each item has a code...
var qry = from i in items
where Codes.Contains(i.Code)
select i;
return qry.ToList();
Thanks Andrew.