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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T00:45:46+00:00 2026-06-03T00:45:46+00:00

I have a lambda expression: var masterDocs = GetMasterDocs(new TNGService.TngServiceClient()); var searchStr = txtDocSearch.Text;

  • 0

I have a lambda expression:

        var masterDocs = GetMasterDocs(new TNGService.TngServiceClient());
        var searchStr = txtDocSearch.Text;
        var filtered = masterDocs.Where(i => i.DisplayTitle.Contains(searchStr));
        lbxDocuments.DataSource = filtered;
        lbxDocuments.DataBind();

For some reason it is not returning expected results. For instance, there is a DisplayTitle that contains the word “Orifice” but when I run this expression, nothing is returned. Am I going about this the wrong way?

  • 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-03T00:45:47+00:00Added an answer on June 3, 2026 at 12:45 am

    The Contains method is case sensitive. Can it be that your input and comparison differs in casing? To get around that, you can use IndexOf instead:

    var filtered = masterDocs.Where(i => 
        i.DisplayTitle.IndexOf(
            searchStr, StringComparison.InvariantCultureIgnoreCase) >= 0);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

assume we have a lambda expression like var thread= new Thread(() => { Foo1();
i have the following lambda expression in MVC application.i want to group data. var
I have a lambda expression that gets results from a Dictionary. var sortedDict =
I am very confused. I have this lambda expression: tvPatientPrecriptionsEntities.Sort((p1, p2) => p1.MedicationStartDate .Value
I have two lambda expressions: Expression<Func<MyEntity, bool>> e1 = i = >i.FName.Contain(john); and Expression<Func<MyEntity,
I have simple lambda as a string: var str = f => f.Substring(0, f.IndexOf('
Supposing I have the following LambdaExpression: var itemParam = Expression.Parameter(typeof(Thing), thing); var someValue =
I have read much about lambda,expression trees amd sort of compiled stuff... now where
I have been experimenting with Lambda expressions in Oxygene. Very simple recursive lambda expression
I have the following method I can pass in a lambda expression to filter

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.