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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T12:15:58+00:00 2026-06-02T12:15:58+00:00

I have a document entity Student public class Student { public string Id {

  • 0

I have a document entity Student

public class Student
{
    public string Id { get; set; }
    public string FirstName { get; set; }
    public string LastName { get; set; }
    public DateTime DateOfBirth { get; set; }
}

I have an index Student_ByName with a boost on the FirstName property defined as

public class Student_ByName : AbstractIndexCreationTask<Domain.Student>
{
    public Student_ByName()
    {
        Map = students => from s in students
                          select new
                                     {
                                         FirstName = s.FirstName.Boost(6), 
                                         s.LastName,
                                         s.DateOfBirth,
                                         s.Gender
                                     };
    }
}

I have the following Student document instances

{ FirstName: 'David', LastName: 'Globe', DateOfBirth: '02/04/2000' }
{ FirstName: 'Tyson', LastName: 'David', DateOfBirth: '23/10/2000' }
{ FirstName: 'David', LastName: 'James', DateOfBirth: '19/05/1996' }

then the query below does not promote rows where David is the first name to the top of the list.

var students = _session.Query<Domain.Student, Student_ByName>()
                       .Where(s => s.FirstName.StartsWith('David') || 
                                   s.LastName.StartsWith('David'))
                       .ToList();

If I change the Where clause to check for equality then the rows with David as the first name are promoted to the top of the list

.Where(s => s.FirstName == 'David' || s.LastName == 'David')
.ToList();

My question is how can I get the boost on the FirstName to work when doing a BeginsWith search.

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

    This is expected, see the explanation here:

    http://grokbase.com/t/lucene/java-user/022dzkexc6/prefixquery-scoring

    You can do this with query time (vs index time) scoring, using:

    var students = session.Advanced.LuceneQuery<Student>()
        .WhereStartsWith("FirstName", "David").Boost(3)
        .WhereStartsWith("LastName", "David")
        .ToList();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following Post entity: public class Post { public string Id {get;set;}
I have the following entity public class DocumentHistory { public string Name { get;
I have an entity with the following attributes public class DimensionElement { public string
I have a book entity which has a OneToMany relationship set up to Document
I have an entity class Document and another one called Space. The relation: @ManyToOne(fetch
I have 2 extension methods that convert a MongoDB document to an entity/object. public
I have a document-based Core Data app. My main Core Data entity has several
I have an XML document that I generate from an Entity Framework object. The
I have two entity types: Document (has a Customer ) and Customer (has a
I have three models: category.rb class Category include Mongoid::Document # Relationships has_many :posts, :autosave

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.