Tagged Questions
9
votes
2answers
3k views
Paginated search results with LINQ to SQL
What's the best pattern to get paginated results with LINQ to SQL?
I have the following scenario:
Suppose I want to search items table by description. I can easily do:
public IQueryable<Item> ...
5
votes
8answers
2k views
How to return a page of results from SQL?
Many applications have grids that display data from a database table one page at a time. Many of them also let the user pick the number of records per page, sort by any column, and navigate back and ...
3
votes
1answer
248 views
Why Fetch should be the last clause in Linq Nhibernate query
Fetch should be the last clause in Linq based on Mike Hadlow's blog post:
Note that if you want to mix Fetch
with other clauses, Fetch must always
come last.
So, if Fetch is just indicating ...
3
votes
3answers
687 views
RavenDB paging index
I have a Linq query as
var mdls = (from mdl in query dbSession.Query<MyModel>("MyIndex")
orderby mdl.Name
select dept).Skip(page.Value).Take(4);
Where "MyIndex" is ...
2
votes
2answers
69 views
Get a page from a collection without going past the last page?
I have a collection of items: ICollection<T> MyCollection
I'm wondering if there is a way to get a subcollection of items (paged) without going past the last page... Right now it returns an ...
2
votes
1answer
368 views
nHibernate & LINQ: Using Fetch() with custom ToPagedList method
I have a problem with using the nHibernate Fetch() (or FetchMany()) method with my paging method which uses Futures to get the information it needs. And I'm not sure how to fix it but I know exactly ...
2
votes
4answers
999 views
Linq Expression for Paging / Pagination with dynamic OrderBy
All,
I am trying to get paging working with a grid. In order to do this, I have to pass in which field to sort by. I cannot figure out how to do this with a Linq query. I am using .NET 4 / EF 4.1. ...
1
vote
2answers
54 views
Best strategy for returning large result sets quickly
I've been working for the last week on trying to speed up the search results on a site. What we've been working on is moving the paging on the site to SQL. This has sped up the paging drastically, ...
1
vote
3answers
171 views
Paging with WCF data service
My question is about how you handle paging with a WCF data service. The way I want to use it, is execute a query (passing page size and current page), and get back the results of that query and also ...
1
vote
2answers
101 views
Asp.net MVC error : LINQ to Entities does not recognize
I am getting the error :
LINQ to Entities does not recognize the method 'PagedList.IPagedList1[MvcMusicStore.Models.Album] ...
1
vote
2answers
185 views
Best way to use LINQ query & Gridview paging when dealing with large recordsets.
I have a gridview on a page which is populated by a LINQ query in the code behind. Nothing fancy but, does use pagination (using the pageIndex changed event).
All works fine but, ran into a problem ...
1
vote
2answers
386 views
Paging with GridView and LINQ to SQL
My grideview:
<asp:GridView runat="server" ID="MyGridView" AutoGenerateColumns="false"
DataKeyNames="ID"
OnRowCreated="MyGridView_RowCreated" AllowPaging="true" Width="100%"
...
1
vote
2answers
716 views
Linq paging - how to solve performance problem?
Edit: Entity Framework seems to be the issue, discussed further in question Entity Framework & Linq performance problem.
I am supporting a PagedList (using linq/generics) class written by someone ...
0
votes
1answer
166 views
How do I call function methods in Linq to Entity Framework and keep pagination?
I need to transform some paginated data from Linq to Entity Framework.
The data should be displayed in MVC Contrib Grid / Pager, so it needs to be paginated and the backend SQL Server should paginate ...
0
votes
0answers
110 views
Custom Paging with LINQ?
I have a datatable which contains user details (names, addresses etc). I have a webpage which displays these user details side by side for editing & saving before moving on to the next two sets of ...
0
votes
1answer
37 views
How to show one page per record, with pagination?
I have an xml file which I am reading into an IEnumerable using linq, now rather than listing every entry using a listbox on one page, id like to show one record on a page.
I've found a blog article ...
0
votes
3answers
378 views
Linq selecting range of records
var q = (from Comments in db.tblBlogComments where Comments.blogID == this.ID orderby Comments.date descending select new {
Comments.userID, Comments.comment, Comments.date
});
This ...
0
votes
7answers
323 views
ASP.NET MVC Query Help
I have the following Index method on my app that shows a bunch of articles:
public ActionResult Index(String query)
{
var ArticleQuery = from m in _db.ArticleSet select m;
if ...
0
votes
3answers
58 views
Efficient retrieval of lists over WebServices
I have a WCF WebService that uses LINQ and EF to connect to an SQL database. I have an ASP.NET MVC front end that collects its data from the webservice.
It currently has functions such as
...