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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T07:31:00+00:00 2026-05-24T07:31:00+00:00

I get a dictionary and i want to get the matching database entries for

  • 0

I get a dictionary and i want to get the matching database entries for the key field in the dictionary.
So the code below gets all database fields that equals the data in the dictionary.keys. So far so good. Now when i loop it and i try to get the field from the fields that matches the key x it fails with an exception:

{“Comparison operators not supported for type ‘System.Collections.Generic.Dictionary`2+KeyCollection[System.String,System.String]'”}

var fields = _dc.fieldInfos.Where(x => x.name.Equals(param.MethodData.Keys));
foreach (var entry in param.MethodData)
{
    KeyValuePair<string, string> entry1 = entry;
    var field = fields.SingleOrDefault(x => x.name.Equals(entry1.Key));
    if (field == null)
    ....
}

The line that fails is this:

var field = fields.SingleOrDefault(x => x.name.Equals(entry1.Key));

Any ideas?

  • 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-24T07:31:01+00:00Added an answer on May 24, 2026 at 7:31 am

    Be mindful that the _dc.fieldInfos.Where(x => x.name.Equals(param.MethodData.Keys)) (line 1) doesn’t actually get executed until you try to iterate over fields (line 5).

    At that point, x.name.Equals(param.MethodData.Keys) fails because a string (x.name) cannot be compared to KeyCollection<string> (param.MethodData.Keys).

    Essentially, you are getting the exception on unexpected line because of the deferred execution.

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

Sidebar

Related Questions

I have got below code to GET dictionary type of session variable value. Please
I want to get type of TKey and TValue given a Dictionary<TKey,TValue> type. eg.
How do I get a Dictionary key by value in C#? Dictionary<string, string> types
In Python, how can I simply do the equivalent of dictionary.get(key, default) for lists
How do I get all of the columns using linq from this dictionary. Dictionary<int,
I'm running the following code to get a random entry from a dictionary: SELECT
Searching a Python dictionary based on the value first, to get a key output
I have a string like this: user=u123;name=Test;lastname=User I want to get a dictionary for
I want to define an interface IFile that includes an array of key/value pairs
I want to iterate to get into every content in following Dictionary. private Dictionary<Subject,

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.