I\'ve tried searching for this but couldn\'t find examples that suited my situation.
I have this method for returning customers. How can I use the string array of co
You are backwards:
return g.Customers.Where(x => customerCodesArray.Contains(x.customerCode)).ToList();