Kros-sk / Kros.Libs

This repo contains Kros.Utils, Kros.Utils.MsAccess, Kros.KORM and Kros.KORM.MsAccess libraries.
MIT License
7 stars 13 forks source link

Skip does not work with OrderBy written as string #155

Closed Jsimo7 closed 6 years ago

Jsimo7 commented 6 years ago

Library name and version

Description

Skip does not work with OrderBy written as string.

Steps To Reproduce

var ret = _filteredQuery.OrderBy($"lastname ASC ").Skip(10).Take(10);

Actual behavior

Results are not provided. Message text of exception is "When Skip method is used, OrderBy must be specified."