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

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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T16:24:01+00:00 2026-05-24T16:24:01+00:00

My search result becomes case sensitive when I change var to IEnumerable; consider below

  • 0

My search result becomes case sensitive when I change var to IEnumerable; consider below code:

the code below returns both cases with RA or ra:

var result = from x in dataBase.tableName 
             select x;
result = result.Where(x => x.id.Contains("ra"));

the code below returns only cases with ra and not RA:

IEnumerable result = from x in dataBase.tableName 
                     select x;
result = result.Where(x => x.id.Contains("ra"));

Could someone help and explain me what is going on? shouldn’t the result be similar?

  • 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-05-24T16:24:03+00:00Added an answer on May 24, 2026 at 4:24 pm

    The difference is that in the first case, var will be an IQueryable<T> – which means your Where call will be to Queryable.Where (after converting your lambda expression to an expression tree). The filter ends up being executed in the database, where I suspect your field is case-insensitive (and so searching is case-insensitive).

    In the second case, you’ve got an IEnumerable<T>, so your Where call will be to Enumerable.Where (after converting your lambda expression to a delegate). The filter ends up being executed in .NET code instead – where Contains is always case-sensitive.

    Basically, LINQ is a leaky abstraction – yes, it would be lovely if the same filter gave the same results in all situations, but that’s unrealistic. Learn where the leaks are, and act accordingly – LINQ is still a huge boon 🙂

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

Sidebar

Related Questions

I am generating user control according to search result. And allowing to change text
Searching from google.com, like www.abc.com Search Result Rank the pages like Title..... Description... www.abc.com
I have a search result from MySQL query or Array or something else. The
The code below belongs to a binary search algorithm. The user enters numbers in
Currently I am constructing a view object from a search result (which comes from
I created a div(search result term bar) which should display only when user enters
I'm trying to implement search result highlighting for pdfs in a web app. I
In my magento project the search result not displays. I have customized my magento.
I'm using LINQ to SQL to get a search result of a FullTextSearch stored
For invoke search android example, every time query search result is received by onCreate().

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.