开发者

Retrieve data from LinqDataSource before Skip and Take happen?

开发者 https://www.devze.com 2023-01-12 18:25 出处:网络
I have a GridView that uses LinqDataSource. The GridView has default paging enable. I would like to retrieve the data from LinqD开发者_StackOverflow中文版ataSource before the paging takes place so tha

I have a GridView that uses LinqDataSource. The GridView has default paging enable. I would like to retrieve the data from LinqD开发者_StackOverflow中文版ataSource before the paging takes place so that I could calculate the Sum of one single column of the whole database using Linq2SQL.

Right now, I'm using LinqDataSource_Selected event with LinqDataSourceStatusEventArgs.Result, but it only returns me the data AFTER paging (that is, the data on that page).

protected void linqDataSource_Selected(Object sender, LinqDataSourceStatusEventArgs e)  
{  
    var totalTime = (e.Result as List<Ticket>).Sum(t => t.TimeSpent);  
    gridView.Columns[8].FooterText = "Sum: " + totalTime;  
}

So my question is: How can I retrieve data from LinqDataSource before paging takes place?


The LINQDataSource class has a GetView() method which returns a DataSourceView object. DataSourceView has an ExecuteSelect() method which will query the datasource directly. You should be able to use LINQ syntax on the ExecuteSelect() method to get your sum.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号