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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T23:12:23+00:00 2026-05-10T23:12:23+00:00

I have a two classes: public class Question { public IList<Answer> Answers { get;

  • 0

I have a two classes:

public class Question {     public IList<Answer> Answers { get; set; } }  public class Answer { .. } 

In my Linq2Sql designer, there’s two L2S objects on designer, with the correct 0<->many arrow between them. Kewl.

I’m not sure how i can retrieve these questions/answers in a single call and populate my POCO objects ..

this is what i’ve got … can someone fill in the blanks?

public IQueryable<Question> GetQuestions() {     return from q in _db.Questions         select new Question             {                 Title = q.Title,                 Answers = ????????   // <-- HALP! :)             }; } 

thoughts?

Update : War of the POCO

Thanks for the replies but it’s not 100% there yet.

Firstly, i’m returning a POCO class, not the Linq2Sql context class. This is why i’m doing…

select new Question { .. }; 

that class is POCO, not the linq2sql.

Secondly, I like the answers that point to doing Answers = q.Answers.ToList() but this also will not work because it’s trying to set a Linq2Sql class to a POCO class.

  • 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. 2026-05-10T23:12:24+00:00Added an answer on May 10, 2026 at 11:12 pm

    If your LINQ to SQL classes have a relationship between them, then an ‘Answers’ property should have been generated on the ‘Question’ LINQ to SQL class. So you should be able to simply do this:

    return from q in _db.Questions        select new Question        {            Title = q.Title,            Answers = q.Answers.ToList(),        } 

    You may be able to omit the call to ToList() – I’m not sure what type LINQ to SQL uses for generated related rows (I believe it’s IQueryable<T>).

    To force the Answers property to be populated up front, rather than firing off another query for each question, you can use the DataLoadOptions class. Essentially you tell LINQ to SQL to load answers any time you query questions (using the LoadWith method – see the MSDN documentation).

    Edit

    You’re right – since your Question.Answers property is a list of your own POCO, assigning it with q.Answers isn’t the way to go. This might work better:

    return from q in _db.Questions        select new Question        {            Title = q.Title,            Answers = (from a in q.Answers                      select new Answer { ... }).ToList(),        } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 82k
  • Answers 82k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer using CrystalDecisions.CrystalReports.Engine; //snip //Where report is the parent rpt of… May 11, 2026 at 4:36 pm
  • Editorial Team
    Editorial Team added an answer You can get hold of the Response object from the… May 11, 2026 at 4:36 pm
  • Editorial Team
    Editorial Team added an answer I agree with JaredPar. The application you build with VS2008… May 11, 2026 at 4:36 pm

Related Questions

How would you test this scenario? I've just started looking into NHibernate and having
I've got a collection that implements an interface that extends both IList<T> and List.
I have created my own Tree implementation for various reasons and have come up
I have two classes public class A { public int BaseA {get;set;} } public

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.