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

  • Home
  • SEARCH
  • 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 8168947
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T20:41:37+00:00 2026-06-06T20:41:37+00:00

not able to get this, can someone help for this LINQ query? select col1,

  • 0

not able to get this, can someone help for this LINQ query?

select col1, 
(select col2 from tbl2 where tbl2.ID=tbl1.tbl2ID) as [col2] 
from tbl1  

scenario is like this

I want all records from Jobs table, Jobs has sectorID column, I also want SectorName. Also it has CountryID and CityID and I need CountryName and CityName too.

  • 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-06T20:41:38+00:00Added an answer on June 6, 2026 at 8:41 pm

    You need to do some joining. Not knowing your structure, something like the following might work.

    Create a simple view model to hold your information:

    public class JobView
    {
        public int JobId { get; set; }
        public string JobName { get; set; }
        //Add any other fields you may need here
        public string SectorName { get; set; }
        public string CityName { get; set; }
        public string CountryName { get; set; }
        public string CityName { get; set; }
    
    }
    

    Then populate a list based on what you need

    List<JobView> retVal = (from job in Jobs
                    join sector in Sectors on job.SectorId equals sector.Id
                    join country in Countries on job.CountryId equals country.Id
                    join city in Cities on job.CityId equals city.Id
                    select new JobView { 
                                    JobId = job.Id,
                                    JobName = job.JobName,
                                    SectorName = sector.SectorName,
                                    CountryName = country.CountryName,
                                    CityName = city.CityName }).ToList();
        }
    

    Any additional fields defined in JobView simply need to be populated during the select.

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

Sidebar

Related Questions

i tried to search this but was not able to get any proper help.I
I know this is simple but I am not able to get it right
This is an open ended interview question. I am not able to get a
This is driving me nuts so I hope someone can help an Objective-C noob
I am hoping that someone can help me with this relative simple problem: <?php
I am not able to get my jwysiwyg and Jhtmlarea text editors to work
I've read the DateFormatting guide and I'm still not able to get a working
I have few Question for which I am not able to get a proper
Trying out the examples found on pleac.sf.net , I'm not able to get an
I am learning Java Security JCE/JAAS. I am not able to get a example

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.