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
I guess this is what you want
return g.Customers.Where(x => customerCodesArray.Contains(x.customerCode)).ToList();