我試過尋找這個,但找不到適合我的情況的例子。Linq IN Operator
我有這種方法來回報客戶。我如何使用字符串數組來過濾它?包含對我不起作用。
public static List<Customer> GetCustomers(string[] customerCodesArray)
{
using (busDataContext g = new busDataContext())
{
return g.Customers.Where(
x => x.customerCode.Contains(customerCodesArray)).ToList();
}
}
請說明「究竟是什麼」不起作用... – Didaxis
「不起作用」是什麼意思?你有編譯錯誤嗎?如果是這樣,那麼錯誤是什麼?或者你有運行時錯誤?如果是這樣,那麼錯誤是什麼? –
[「Where In」with linq to sql](http://stackoverflow.com/questions/960827/where-in-with-linq-to-sql) – jrummell