I'm trying to retrieve a specific number of data for paging, I have no idea why the Skip Query returns an empty List and it throws the following exception "The result of a query cannot be enumerated more than once"
IEnumerable<ImgOrgSet> query = _ImgOrgRepository.GetImgOrgList();
IEnumerable<ImgOrgSet> queryPaginated = query.OrderBy(x => x.Id).Skip((CurrentPage - 1) * PageSize).Take(PageSize);