Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7158797
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T13:07:33+00:00 2026-05-28T13:07:33+00:00

I have the following Post entity: public class Post { public string Id {get;set;}

  • 0

I have the following Post entity:

public class Post
{
   public string Id {get;set;}
   public string Text {get;set;}
   public IList<Vote> Votes {get;set;}
   public IList<Comment> Comments {get;set;}
}

For list of Posts I need to retrieve Id, Text, Rating (sum of votes), CommentsCount. I tried to create the following MapReduce index:

public class PostsForList: AbstractIndexCreationTask<Post, PostsForList.ReduceResult>
{
  public class ReduceResult
  {
    public string Id { get; set; }
    public string Text { get; set; }
    public long Rating { get; set; }
    public long CommentsCount { get; set; }
  }

  public PostsForList()
  {
    Map = posts => from post in posts
                              from comment in post.Comments
                              from vote in post.Votes
                              select
                                new
                                {
                                  Id = post.Id,
                                  Text = post.Text,
                                  Rating = vote.Value /* 1 or -1 */
                                  CommentsCount = 1,
                                };

    Reduce = results => from result in results
                        group result by result.Id
                        into grouped
                        select
                          new
                          {
                            Id = grouped.Key,
                            Text = grouped.Select(x => x.Text).First(),
                            Rating = grouped.Sum(x => x.Rating)
                            CommentsCount = grouped.Sum(x => x.Rating),
                          };
  }
}

It looked reasonable for me initially. But looks like my Map with three from clauses won’t work. The only other solution I see is to use MultiMap index with two maps (one for votes and one for comments). But it looks a bit strange to use MultiMap index where both indexes query the same document… Are there any other solutions?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T13:07:34+00:00Added an answer on May 28, 2026 at 1:07 pm

    Idsa, there’s no need to define an index here. Both collections, Votes and Comments are part of the document, so just use them:

    var posts = documentSession.Query<Post>()
        .Skip(CurrentPage*PageSize)
        .Take(PageSize)
        .ToList(); // here is the db-call! all following is just in-memory
    
    var viewModelPosts = from post in posts
                            select new
                                {
                                    post.Id,
                                    post.Text,
                                    Rating = post.Votes.Sum(x => x.Value),
                                    CommentsCount = post.Comments.Count
                                };
    

    Update:
    I you really want to precompute the results, take a look here: http://daniellang.net/using-an-index-as-a-materialized-view-in-ravendb/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given domain model... public class Entity { public int Id { get; set; }
I have the following entity: public class Alert { public virtual int Id {
I have an Entity with the following property: [ScriptIgnore] public DateTime Date { get
I have the following code: // // POST: /PlayRoundHole/Create [AcceptVerbs(HttpVerbs.Post)] public ActionResult Create(FormCollection collection)
I Have following code: Controller: public ActionResult Step1() { return View(); } [AcceptVerbs(HttpVerbs.Post)] public
I have the following code: [AcceptVerbs(HttpVerbs.Post), Authorize(Roles = RoleKeys.Administrators)] public ActionResult Edit(int id, FormCollection
I have the following update code in the ASP.NET MVC controller: [AcceptVerbs(HttpVerbs.Post)] public ActionResult
I have been following the following post on using multiple ItemTemplates in a ListView
i have the following javascript to post a form through ajax without refreshing the
I have the following data: A post called Hello has categories greet Another post

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.