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 9119343
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T05:22:24+00:00 2026-06-17T05:22:24+00:00

please advise me on how to correctly conduct a full-text search on a dictionary

  • 0

please advise me on how to correctly conduct a full-text search on a dictionary field.

I have indexed all translatable fields like this:

public class TranTest
{
    public string Id { get; set; }
    public IDictionary<string, string> Trans1 { get; set; }
    public IDictionary<string, string> Trans2 { get; set; }

    //for index queries
    public IDictionary<string, string> Trans { get; set; }
}

public class TranTestIndex : AbstractIndexCreationTask<TranTest>
{
    public TranTestIndex()
    {
        Map = docs =>
            from doc in docs
            select new
            {
                _ = doc.Trans1.Select(x => CreateField("Trans_" + x.Key, x.Value)),
                Trans2 = doc.Trans2.Select(x => CreateField("Trans_" + x.Key, x.Value)),
                /* etc. */
            };

        Index("Trans_en", FieldIndexing.Analyzed);
        Index("Trans_fi", FieldIndexing.Analyzed);
        /* etc. */
    }
}

This (query translates to: Trans_en:(term)) returns correct results:

var luceneQ = session.Advanced.LuceneQuery<TranTest, TranTestIndex>().Search(x => x.Trans["en"], searchTerms).ToList();

But I would prefer using the IRavenQueryable API. Unfortunately a similiar query in that API produces InvalidOperationException: Could not understand how to translate ‘x.Trans.get_Item(“en”)’ to a RavenDB query:

var ravenQ = session.Query<TranTest, TranTestIndex>().Search(x => x.Trans["en"], searchTerms);
results = ravenQ.ToList();  //Exception!

Which is odd, considering this works flawlessly (translates to: Trans_en:”term*”):

session.Query<TranTest, TranTestIndex>().Where(x => x.Trans["en"].StartsWith(searchTerms))

My questions regarding this issue:

  1. How would I create a multiple term full-text search query on a dictionary field with IRavenQueryable linq API?
  2. Is it possible to combine IRavenQueryable and IDocumentQuery into one query?
  3. Is there a another/better way to create the index?
    • It has to support dynamically adding new languages
    • It has to support searching over a concrete language
    • Search should be conducted over multiple fields
  • 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-17T05:22:26+00:00Added an answer on June 17, 2026 at 5:22 am

    You’ve discovered a bug. I’ve verified with these unit tests, and submitted it to the RavenDB issue tracker.

    To workaround for now, either use the Lucene query approach, or (as you alluded to in your second question) you can customize the underlying DocumentQuery of the IRavenQueryable as follow:

    session.Query<TranTest, TranTestIndex>()
           .Customize(x => ((IDocumentQuery<TranTest>) x)
                               .Search(q => q.Trans["en"], searchTerms))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Please advise.. In the following code(Tested. Will work fine) public class Exp_Test { public
Would anyone please advise how in jade for nodejs I can truncate a string
Could someone please advise the current best practice around Date and Calendar types. When
Can anyone please advise where i'm going wrong with the following? I want the
Could someone please advise? If const in C++ defaults to internal linkage, why do
Can anyone please advise me if there will be any problems changing the wordpress
I'm not sure how to approach this SQL statement so please advise, even if
Getting a segmentation fault for the following code. Please advise. struct columns { char*
I need to display a progress of loading of item's children. Please advise how
Is it possible to display line numbers in a JTextArea ? Please advise me

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.