任何人都可以解釋爲什麼我沒有看到WriteLine的(我)預期的輸出? 我可以看到它,當我在VS中調試它並刷新'結果',以查看其VS內的本地窗口中的內容。 THXLINQ,Lambda,困惑
Func<Category, bool> del = (Category cat) => {
System.Console.WriteLine(cat.CategoryName);
return cat.CategoryID > 1;
};
NorthwindEntities nw = new NorthwindEntities();
var result = nw.Categories.Where<Category>(del);
Console.Read();
嗨,歡迎來到StackOverflow,你可以發佈一些預期的輸入/輸出和你實際得到的? – 2013-03-20 14:13:27
你期望看到輸出結果在哪裏?這是一個控制檯應用程序? – 2013-03-20 14:14:25