In my project i am using mongodb and c# driver for mongodb. Recently i found that all search im mongodb case sensetive, but i need insensitive search.

So, can anyone help?

Thanks a lot.

I found one way to do this:

Query.Matches("FirstName", BsonRegularExpression.Create(new Regex(searchKey,RegexOptions.IgnoreCase)));
link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

You will probably have to store the field twice, once with its real value, and again in all lowercase. You can then query the lowercased version for case-insensitive search (don't forget to also lowercase the query string).

This approach works (or is necessary) for many database systems, and it should perform better than regular expression based techniques (at least for prefix or exact matching).

link|improve this answer
feedback

try to use something like this:

Query.Matches("FieldName", BsonRegularExpression.Create(new Regex(searchKey, RegexOptions.IgnoreCase)))
link|improve this answer
I found this answer. Thanks. – Andrew Orsich Dec 16 '10 at 9:09
no problem, but be careful with created index for this field. – Andrei Andrushkevich Dec 16 '10 at 15:29
feedback

In case anyone else wondering, using fluent-mongo add-on, you can use Linq to query like that:

public User FindByEmail(Email email)
{
    return session.GetCollection<User>().AsQueryable()
           .Where(u => u.EmailAddress.ToLower() == email.Address.ToLower()).FirstOrDefault();
}

Which results in correct JS-query. Unfortunately, String.Equals() isn't supported yet.

link|improve this answer
I wonder how this works internally? I was under the impression that the only ways of doing it were via a regex (which can't use the index) and duplicating the field. – UpTheCreek Sep 3 '11 at 17:03
Looking at the sources, It uses .toLowerCase() method, nothing special. But you've got me worried about indexes. – Kostassoid Sep 5 '11 at 5:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.