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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T08:31:38+00:00 2026-06-16T08:31:38+00:00

Dictionary<string, DataRow> dtUsers; using (DataSet dsmyTable = DbConnection.db_Select_Query (use myDb select * from myTable))

  • 0
Dictionary<string, DataRow> dtUsers;
using (DataSet dsmyTable = DbConnection.db_Select_Query
                     ("use myDb select * from myTable"))
{
    dtUsers= dsmyTable .Tables[0].AsEnumerable().
         ToDictionary(row => row.Field<string>("UserId"));
}

Alright UserId is a smallint column
But I want to cast it as string.

How should I modify the above linq ?

  • 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-16T08:31:39+00:00Added an answer on June 16, 2026 at 8:31 am

    You can’t cast an int to a string, but you can get the string representation of the int:

    dtUsers= dsmyTable .Tables[0].AsEnumerable().
             ToDictionary(row => row.Field<short>("UserId").ToString());
    

    However, you should only do this for display purposes. In general, you’ll want to keep the int for as long as you can, as it is much easier to deal with an int instead of parsing it from a string everywhere.

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

Sidebar

Related Questions

I need a Dictionary<string,object> which is produced from a DataRow. I currently have something
I am trying to sub-select a Dictionary<String, Double> from a Dictionary<String, String> . To
How does performance for reading/adding values from/to Dictionary(Of String, SomeReferenceType) depend on the number
I happen to use this kind of structure quite a lot: Dictionary<string, List<string>> Foo
I have a simple Dictionary(of String, Object) that I need to iterate through and
I'm trying to initialize a dictionary with string elements as keys and int[] elements
I have such dictionary Dictionary<string, object> , dictionary holds string keys and objects as
I'd like to create a Dictionary that is indexed by Strings: Dictionary(of String, ...)
I have the following decleration: private Dictionary<string, Dictionary<string, File>> listFiles = new Dictionary<string,Dictionary<string,File>>(); How
What is the cost of len() function for Python built-ins? (list/tuple/string/dictionary)

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.