问题
I have a page loading a bit slow, and because of that I want to load the data in the gridview AFTER the page is done loading.
I would like to, keep using my LinqDataSource1_Selecting - since I get this error when I bind the gridview with Grid1.DataSource:
Cannot compute Count for a data source that does not implement ICollection.
For now I've tried using BackgroundWorker, Asynchronous Pages and a timer. But I can't really get them too work like I want to.
This is how I'm binding my data:
protected void LinqDataSource1_Selecting(object sender, LinqDataSourceSelectEventArgs e)
{
GWportalDataContext db = new GWportalDataContext();
DeliveryTimeRepository dltRep = new DeliveryTimeRepository();
var query = from o in db.Orders
join y in db.OrderLines on o.OrderID equals y.OrderID
join x in db.Products on y.ItemNumber equals x.ItemNumber
where o.AccountNumber == AppSession.CurrentLoginTicket.AccountNumber
select new
{
o.OrderID,
o.AxaptaSalesId,
y.ItemNumber,
Name = x.Name + o.OrderID,
x.ProductFormatName,
y.Quantity,
y.Price,
Status = dltRep.getOrderStatus(o.OrderID, o.AxaptaSalesId, y.ItemNumber).Substring(0, dltRep.getOrderStatus(o.OrderID, o.AxaptaSalesId, y.ItemNumber).LastIndexOf("|")),
Levering = dltRep.getOrderStatus(o.OrderID, o.AxaptaSalesId, y.ItemNumber).Substring(dltRep.getOrderStatus(o.OrderID, o.AxaptaSalesId, y.ItemNumber).LastIndexOf("|")).Replace("|", "")
};
var query2 = from o in db.AxSales
join y in db.AxSaleLines on o.SalesId equals y.SalesId
join x in db.Products on y.ItemNumber equals x.ItemNumber
where o.AccountNumber == AppSession.CurrentLoginTicket.AccountNumber
select new
{
OrderID = o.SalesId,
AxaptaSalesId = o.SalesId,
y.ItemNumber,
Name = x.Name + o.SalesId,
x.ProductFormatName,
y.Quantity,
Price = y.SalesPrice,
Status = dltRep.getAxOrderStatus(o.SalesId, y.ItemNumber).Substring(0, dltRep.getAxOrderStatus(o.SalesId, y.ItemNumber).LastIndexOf("|")),
Levering = dltRep.getAxOrderStatus(o.SalesId, y.ItemNumber).Substring(dltRep.getAxOrderStatus(o.SalesId, y.ItemNumber).LastIndexOf("|")).Replace("|", "")
};
//Query 1 start
var dataToList = query.ToList();
List<object> deletedItems = dataToList.Where(item => orderDeleted(item.OrderID, item.AxaptaSalesId)).Cast<object>().ToList();
var datatoGrid = dataToList.Except(deletedItems);
// Query 1 end
//Query 2 start
var dataToList2 = query2.ToList();
List<object> deletedItems2 = dataToList2.Where(item => axOrderDeleted(item.AxaptaSalesId)).Cast<object>().ToList();
var dataToGrid2 = dataToList2.Except(deletedItems2);
//Query 2 end
var combined = datatoGrid.Union(dataToGrid2);
e.Result = combined;
}
回答1:
Are you making sure to cast you e.Result
back into a List<Object>
when you bind it to your data grid?
DataGrid.DataSource = (List<Object>)e.Result;
e.Result
is an Object
which doesn't implement ICollection
Based on OP comments
Since you are calling this as
datatoGrid.Union(dataToGrid2);
You just need to do a
dataGrid.Union(dataToGrid2).ToList();
来源:https://stackoverflow.com/questions/8593163/databind-grid-linq-asynchronous-asp-net-c-sharp