-2

Application_Start私はデータテーブルをフィルタリングしようとしています。他のコードビハインドファイルではAsEnumerable()、DataTableを使用できます。ただし、Global.asaxにはありません。何らかの理由?

4

1 に答える 1

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;

        ....
    }
    ....
}
于 2012-10-26T06:15:19.790 に答える