Skip to content

Commit

Permalink
fix(remoterepository): set correct order by descending expressions
Browse files Browse the repository at this point in the history
  • Loading branch information
SonicGD committed Feb 17, 2023
1 parent 8ede5a7 commit 36c442d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Sitko.Core.Repository.Remote/RemoteRepositoryQuery.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ internal RemoteRepositoryQuery(RemoteRepositoryQuery<TEntity> source)
whereExpressions = source.whereExpressions;
whereByStringExpressions = source.whereByStringExpressions;
orderByExpressions = source.orderByExpressions;
orderByDescendingExpressions = source.orderByExpressions;
orderByDescendingExpressions = source.orderByDescendingExpressions;
includesByName = source.includesByName;
includableQueries = source.includableQueries;
selectExpression = source.selectExpression;
Expand Down

0 comments on commit 36c442d

Please sign in to comment.