Application_Start
我試圖過濾數據表。在其他代碼背後的代碼中,我可以使用DataTable的AsEnumerable()
;但不在Global.asax中。任何原因?global.asax中的dataTable.AsEnumerable()
-2
A
回答
0
我做了隱藏文件單獨代碼Global.asax
的Global.asax:
<%@ Application Codebehind="Global.asax.cs" Language="C#" %>
的Global.asax.cs:
public class Global : HttpApplication
{
void Application_Start(object sender, EventArgs e)
{
....
var filtered = from entity in dt.AsEnumerable()
.Where(entity => entity.Field<int>("SerialNumber") == key)
select entity;
....
}
....
}
相關問題
- 1. 查詢datatable.AsEnumerable與LINQ
- 2. LINQ to DataSet,DataTable.AsEnumerable()not recognized
- 3. Global.asax中的Server.MapPath
- 4. global.asax中的常量
- 5. 從Global.asax中
- 6. 在Global.asax中
- 7. 在Global.asax中
- 8. HttpApplication.Context空Global.asax中
- 9. Global.asax中Application_Error中的問題
- 10. 的Server.Transfer從Global.asax中的Application_Error
- 11. 確定在Global.asax中
- 12. 如何在Global.asax中
- 13. asp.net中global.asax的用途
- 14. 是App_Code.dll中的Global.asax文件
- 15. Global.asax中的異步方法
- 16. Global.asax中的WebApiConfig錯誤
- 17. Global.asax中的計時器
- 18. global.asax nlog
- 19. 的Global.asax事件:Application_OnPostAuthenticateRequest
- 20. 使用Global.asax的MvcMailer
- 21. Global.asax上的WindowsMediaPlayer application_start
- 22. 在Global.asax中檢索會話
- 23. 在彙編中嵌入Global.asax
- 24. 解決Ninject ILogger在Global.asax中
- 25. ASP.NET會話在Global.asax中
- 26. Global.asax頁面?在Asp.net中?
- 27. 在Global.asax中調用函數
- 28. ASP.NET在global.asax中獲取viewstate
- 29. Applicaion_Error事件在Global.asax中
- 30. HttpRuntime.Cache在Global.asax中總是空
那麼你已經使用'System.Linq的;'在那裏,當你嘗試'.AsEnumerable()'時會拋出一個錯誤嗎? – V4Vendetta
它引發錯誤:錯誤'System.Data.DataTable'不包含'AsEnumerable'的定義,並且沒有找到接受'System.Data.DataTable'類型的第一個參數的擴展方法'AsEnumerable'(你是否缺少using指令或程序集引用?) – mike44
那麼'AsEnumerable()'沒有參數,你能顯示你的代碼嗎? (使用聲明)! ! – V4Vendetta