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)));