Skip to content

Commit

Permalink
comparison of usage stats of a selected word among all poets #471
Browse files Browse the repository at this point in the history
  • Loading branch information
hrmoh committed Mar 5, 2025
1 parent eb1c6f5 commit 0538546
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ public async Task<RServiceResult<CategoryWordCountSummary>> GetCategoryWordCount
from cwd in _context.CategoryWordCounts
join catsum in _context.CategoryWordCountSummaries on cwd.CatId equals catsum.CatId
join cat in _context.GanjoorCategories on cwd.CatId equals cat.Id
where cat.ParentId == 0 && cwd.Word == term
orderby cwd.Count
where cat.ParentId == null && cwd.Word == term
orderby cwd.Count descending
select
new PoetOrCatWordStat()
{
Expand Down

0 comments on commit 0538546

Please sign in to comment.