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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T10:29:15+00:00 2026-05-12T10:29:15+00:00

I have a post class : class Post { public int ID; public int?

  • 0

I have a post class :

class Post
{
public int ID;
public int? ParentID;
}

The only difference between answer and question in post class is that question has parend id equals null.

And I want to write one query which always return question and it’s answers no matter i pass to it ID of question or ID of answer
for example:

I have ID=1 and don’t know that it is ID of answer or question but if it is question ID i want to get that question and answers from post class

var selectquestionbyquestionid= from p in posts where p.ParentID==id || p.ID==id select p; 
(it's query only for first variant)

but if ID=1 is ID of answer and want to get question of that answer and all answers of that question

Is it possible ?

Update (following Jon Skeet advice):
Class Post looks like that:

  class Post
    {
    public int ID;
    public int QuestionID;
    }

And if post is a question it has QuestionID equals it’s own Id, but still i would like to write one query to do this, i know it is easier to write two

  • 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-05-12T10:29:15+00:00Added an answer on May 12, 2026 at 10:29 am

    EDIT: With the new QuestionID field instead, I suspect this will work:

    var query = from post in posts
                where post.ID == id
                join related in posts on post.QuestionID equals related.QuestionID
                select related;
    

    (You might want to try reversing the order of the join to see if that affects the query plan for the generated SQL.)


    (The original question used a nullable ParentID field instead of QuestionID.)

    Do you absolutely have to do it in one query? I’m sure it will be possible, but it’s likely to be uglier than splitting it up:

    var post = posts.Where(p => p.ID == id)
                    .FirstOrDefault();
    
    if (post == null)
    {
        // No such question - deal with it
    }
    int questonID = post.ParentID ?? post.ID;
    
    var allPosts = posts.Where(p => p.ID == questionID || p.ParentID == questionID);
    

    One thing to note: if you could change it from “ParentID” to “QuestionID” and make it non-nullable, such that a question had its own ID as the QuestionID, the queries would become a bit simpler.


    If you really want to do this in one query, you may be able to do it as:

    var query = from post in posts
                where post.ID == id
                let questionID = post.ParentID ?? post.ID
                from related in posts
                where related.ID == questionID || related.ParentID == questionID
                select related;
    

    I don’t know what LINQ to SQL will make of that though.

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

Sidebar

Ask A Question

Stats

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

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

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

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

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Well i tried this using FocusManager.FocusedElement .. and made the… May 12, 2026 at 1:25 pm
  • Editorial Team
    Editorial Team added an answer Medium Trust. If you are developing code to go into… May 12, 2026 at 1:25 pm
  • Editorial Team
    Editorial Team added an answer EDITED FOR THOSE WHO DIDN'T FOLLOW THE COMMENTS ;) "As… May 12, 2026 at 1:25 pm

Related Questions

I have a data class that contains a number of fields: public class Person
if you have an entity which is reference in the client and a webservice
I have a edit View - Product/Edit/1 1 being the Id of the Product.How
I'm passing data between my controller and my view using a ViewModel class. When

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.