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

  • SEARCH
  • Home
  • 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 8651909
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T14:11:01+00:00 2026-06-12T14:11:01+00:00

In RavenDB my document (ID = 1234) is datacontainer: { data: [ { @idx:

  • 0

In RavenDB my document (ID = 1234) is

   "datacontainer": {
      "data": [
        {
          "@idx": "1",
          "@idy": "a",
          "value": {
            "#text": "test 2010"
          }
        },
        {
          "@idx": "2",
          "@idy": "b",
          "value": {
            "#text": "test 2011"
          }
        },
        {
          "@idx": "3",
          "@idy": "c",
          "value": {
            "#text": "test 2012"
          }
        }
      ]
   }

I want to create an Index, where I choose my favourite values (for example idx = "2" and idy = "b") and the output will be:

(ID, value_text) = (1234, "test 2011")

Now I can select a single element and check its value in Linq:

where p.datacontainer.data[0]["@idx"] == "2" && p.datacontainer.data[0]["@idy"] == "b"

How can I search the right element in my list?

  • 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-06-12T14:11:02+00:00Added an answer on June 12, 2026 at 2:11 pm

    I solved my problem! In RavenDB the index, called “MyIndex”, is:

    Map:

    from p in docs
    select new  
    {  Id = p.id, 
       M = p.dataApplication.datacontainer.data.Where(x => x["@idx"] == "2").First(x => x["@idy"] == "b").value["#text"] 
    };
    

    Reduce:

     from test in results
     group test by new {test.Id, test.M   } into g
     select new { g.Key.Id, g.Key.M }
    

    Now I can use this Index in my queries, so I will search for a document that contains a particular value, for example:

     var results = from p in session.Query<QueryResult>("MyIndex")
                   where p.M == "test 2011"
                   select p;
    

    Maybe there is a better solution, but now it works!

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

Sidebar

Related Questions

I want to insert document to the ravenDb. It has property named Description: I've
When performing a dynamic query, RavenDB will typically create a temp index. Retrieving document
I have a document model to store in RavenDB but I don't want to
How can I find the Min value of a RavenDB document property over all
In this RavenDB post , Ayende uses a .As call to push the data
We're using RavenDB saga storage, but the saga data isn't being persisted after the
If I insert a new document into RavenDB using a put command and specify
The sample db that comes with RavenDB has Albums document collection, that each have
In RavenDB, I have a document that looks like this: public class SystemNotification {
I want to use RavenDB with ninject in my asp.net mvc3 project, Any idea

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.