我們可以使用foreach循環來查詢Iqueryable對象嗎?對於可查詢對象的Foreach循環問題
我想要做的事情如下:
query = Iqueryable<Myclass> = objDataContext.Myclass; // objDataContext is an object of LINQ datacontext class
int[] arr1 = new int[] { 3, 4, 5 };
foreach (int i in arr1)
{
query = query.Where(q => (q.f_id1 == i || q.f_id2 == i || q.f_id3 == i));
}
它給了我錯誤的輸出作爲每個時間值,如果我改變。
什麼「輸出」?這裏沒有輸出... – 2010-06-03 05:51:16