在Application_Start
我试图过滤数据表。在文件后面的其他代码中,我可以使用DataTable的AsEnumerable()
;但不是在Global.asax中。任何原因?
答案 0 :(得分: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;
....
}
....
}