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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T11:13:00+00:00 2026-06-12T11:13:00+00:00

Can someone explain why, when a query should be returning one string item only

  • 0

Can someone explain why, when a query should be returning one string item only like in the example below;

From c in context.Products Where c.Id=prodId Select c.Name

Why cant that be done like so;

Dim prodDeleted as String = (From c in context.Products Where c.Id=prodId Select c.Name).ToString()

bvecause it returns this (System.Data.Objects.ObjectQuery`1[System.String]) , instead of the product name

versus having to do it like so;

 Dim prodDeleted = (From c In ctx.products
                               Where c.Id = prodId
                               Select c).FirstOrDefault()

 Dim deletedprodname As String = prodDeleted.Name.ToString()
  • 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-12T11:13:01+00:00Added an answer on June 12, 2026 at 11:13 am

    Because all calls to Select return an IEnumerable rather than a single element.

    To verify that your query really returns a single element, you need to add the call to Single. Or, if you don’t care if a single element or multiple elements were returned, you can grab the first using First.

    If you’re not against using the VB.NET equivalent of lambda syntax, you can streamline everything:

    Dim deletedProdName As String = 
        ctx.products.SingleOrDefault(Function(c) c.Id = prodId).Name
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This looks like it should be a relatively simple query but can someone please
Can someone explain me how below query will work.. i have table called employee
Can someone explain whats happening here? Both are same query, with the only difference
Can someone explain step by step how this query is processed? SELECT F.ID, F.FirstName,
I have a query with regards to pointers, can someone help explain the following
Can someone explain why it's best use is for prototyping? Should it not be
Can someone explain how to create a .php page which auto-updates with values from
Can someone explain to me what syntax this SQL query matches? SELECT DISTINCT boats.boatid
Can someone explain to me why my EF (4.3) code first code below is
Can someone explain why this exception is occuring the in the following LINQ query:

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.