Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Published Content Query has "skip" applied twice #11378

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions src/Umbraco.Examine.Lucene/BackOfficeExamineSearcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,7 @@ public IEnumerable<ISearchResult> Search(string query, UmbracoEntityTypes entity

totalFound = result.TotalItemCount;

var pagedResult = result.Skip(Convert.ToInt32(pageIndex));

return pagedResult;
return result;
}

private bool BuildQuery(StringBuilder sb, string query, string searchFrom, List<string> fields, string type)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -194,9 +194,8 @@ public void DeleteDocumentsForContentTypes(IReadOnlyCollection<int> removedConte
.Field("nodeType", id.ToInvariantString())
.Execute(QueryOptions.SkipTake(page * pageSize, pageSize));
total = results.TotalItemCount;
var paged = results.Skip(page * pageSize);

foreach (ISearchResult item in paged)

foreach (ISearchResult item in results)
{
if (int.TryParse(item.Id, NumberStyles.Integer, CultureInfo.InvariantCulture, out int contentId))
{
Expand Down
4 changes: 2 additions & 2 deletions src/Umbraco.Infrastructure/PublishedContentQuery.cs
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ public IEnumerable<PublishedSearchResult> Search(string term, int skip, int take
totalRecords = results.TotalItemCount;

return new CultureContextualSearchResults(
results.Skip(skip).ToPublishedSearchResults(_publishedSnapshot.Content), _variationContextAccessor,
results.ToPublishedSearchResults(_publishedSnapshot.Content), _variationContextAccessor,
culture);
}

Expand Down Expand Up @@ -324,7 +324,7 @@ public IEnumerable<PublishedSearchResult> Search(IQueryExecutor query, int skip,

totalRecords = results.TotalItemCount;

return results.Skip(skip).ToPublishedSearchResults(_publishedSnapshot);
return results.ToPublishedSearchResults(_publishedSnapshot);
}

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,10 @@ public ActionResult<SearchResults> GetSearchResults(string searcherName, string
return SearchResults.Empty();
}

var pagedResults = results.Skip(pageIndex * pageSize);

return new SearchResults
{
TotalRecords = results.TotalItemCount,
Results = pagedResults.Select(x => new SearchResult
Results = results.Select(x => new SearchResult
{
Id = x.Id,
Score = x.Score,
Expand Down