We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to add RowNumbers to IOrderedQueryable<TEntity>.
IOrderedQueryable<TEntity>
The problem is, that constructing RowNumberOrderByClause dynamically is not a trivial task.
I think following overload would be useful:
var query = dbContext.Products; var orderedQuery = ApplyOrderBy(query, DataGrid.SortModel); orderedQuery.Select(entity => new { entity, rowNumber = EF.Functions.RowNumber(entity) })
alternativelly:
RowNumberOrderByClause FromOrderedQueryable<TEntity>(IOrderedQueryable<TEntity> query); orderedQuery.Select(entity => new { entity, rowNumber = EF.Functions.RowNumber(RowNumberOrderByClause.FromOrderedQueryable(query)) })
Simmilar approach was mentioned here #7
EDIT:
or even better this Select overload:
orderedQuery.Select((entity, index) => new { entity, index });
The text was updated successfully, but these errors were encountered:
Hi, the last idea (Select((entity, index) => )) looks interessting but currently I have no time to implement this feature.
Select((entity, index) => )
Sorry, something went wrong.
No branches or pull requests
I want to add RowNumbers to
IOrderedQueryable<TEntity>
.The problem is, that constructing RowNumberOrderByClause dynamically is not a trivial task.
I think following overload would be useful:
alternativelly:
Simmilar approach was mentioned here #7
EDIT:
or even better this Select overload:
The text was updated successfully, but these errors were encountered: