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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T12:50:14+00:00 2026-05-25T12:50:14+00:00

I have a dictionary that contains Product values with properties like description . In

  • 0

I have a dictionary that contains Product values with properties like description.
In a textbox1_textchanged handler, I want to search the Products in the dictionary that has certain text within the description.

I’ve tried this:

var values = (from pv in mydictionary
              where pv.Value.description.Contains(textBox1.Text)
              select pv.Value);

This code isn’t working because the second key I pressed values var values is empty.

All the examples I found are searching through the keys but I need to search through the values of the dictionary.

  • 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-25T12:50:15+00:00Added an answer on May 25, 2026 at 12:50 pm

    What you have isn’t valid code however. You are trying to filter the values that have a certain description but you’re missing a key element. You need to add the where clause to complete it.

    var values =
        from pv in mydictionary
        where pv.Value.description.Contains(textBox1.Text)
        select pv.Value;
    

    A better way to write this however would be to just look at the values of the dictionary.

    var values =
        from value in mydictionary.Values // Note: we're looking through the values only,
                                          // not all the key/value pairs in the dictionary
        where value.description.Contains(textBox1.Text)
        select value;
    

    To make it case-insensitive, you could try using String.IndexOf() since it’s one of the few comparisons that could do the search ignoring the case.

    var values =
        from value in mydictionary.Values
        where value.description
                   .IndexOf(textBox1.Text, StringComparison.OrdinalIgnoreCase) != -1
                   // any value that isn't `-1` means it contains the text
                   // (or the description was empty)
        select value;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Dictionary<> collection that contains characters. The collection has items added and
i have a class Product that contains a Dictionary with a price curve. The
I have a verses dictionary that contains these values: {cluster1: 0, cluster2: 0, cluster3:
I have a class that contains a property-value (property bag) dictionary beside normal properties.
If i have a resource dictionary that contains something like <RibbonTab x:Key=HomeRibbonComponent Header=test> </RibbonTab>
I have a Dictionary that contains items and prices. The items are unique but
Suppose I have a Collection of some kind that itself contains Collections; e.g., Dictionary(Of
I have a Dictionary<string,int> that has the potential to contain upwards of 10+ million
I have a Dictionary that when I add multiple values to it, the items
I have a dictionary of strings that i want the user to be able

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.