We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f987faa commit 0c331adCopy full SHA for 0c331ad
src/MR.EntityFrameworkCore.KeysetPagination/KeysetPaginationBuilder.cs
@@ -30,6 +30,11 @@ public KeysetPaginationBuilder<T> Descending<TColumn>(
30
return ConfigureColumn(columnExpression, isDescending: true);
31
}
32
33
+ /// <summary>
34
+ /// Configures a column as part of the keyset in the order specified through <paramref name="isDescending"/>.
35
+ ///
36
+ /// If <paramref name="isDescending"/> is `false` the column is configured as ascending.
37
+ /// </summary>
38
public KeysetPaginationBuilder<T> ConfigureColumn<TColumn>(
39
Expression<Func<T, TColumn>> columnExpression,
40
bool isDescending)
0 commit comments