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 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

Related Questions

I have a question, here are two classes below: class Base{ public: virtual void
I have two classes, named Post and Question. Question is defined as: public class
I have a question, now i have two classes as following public class mainClass
I have a problem with hibernate and criterias. I have two Classes: public class
I have these two classes public class Person { } public class Company {
Let's say we have these two classes: public class Base { public static int
greetngs, i have two classes: [Serializable] public class FireGridUnit { public GridUnit FireGridLocation {
I have the following two classes: public class Address { public string AddressLine1 {
my code is like this: i have two classes first class: public class Box<E>
I have two classes Address and Employee as follows: public class Address { public

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.