Ejemplo n.º 1
0
        public IQueryable <T> ApplyFilter(string where, IQueryable <T> queryResult)
        {
            if (_paginationService != null)
            {
                queryResult = _paginationService.Filter(queryResult, where);
            }

            return(queryResult);
        }