-2

Application_Start我试图过滤数据表。在文件后面的其他代码中,我可以使用AsEnumerable()DataTable;但不在 Global.asax 中。任何原因?

4

1 回答 1

0

我在文件后面制作了单独的代码Global.asax

全球.asax:

<%@ Application Codebehind="Global.asax.cs" Language="C#" %>

全球.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;

        ....
    }
    ....
}
于 2012-10-26T06:15:19.790 回答