RavenDB Map/Reduce/Transform on nested, variable-length arrays
问题 I'm new to RavenDB, and am loving it so far. I have one remaining index to create for my project. The Problem I have thousands of responses to surveys (i.e. " Submissions "), and each submission has an array of answers to specific questions (i.e. " Answers "), and each answer has an array of options that were selected (i.e. " Values "). Here is what a single Submission basically looks like: { "SurveyId": 1, "LocationId": 1, "Answers": [ { "QuestionId": 1, "Values": [2,8,32], "Comment": null }