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

Related Questions

I have a model as below: public class Post { public int Id {get;set;}
I'm developing a question/answer based application I have a Post table in the db
the basic idea is that you have some class that has a reference type
I have a model public class Foo{ public int Id{get;set;} public string Name {get;
i have this timer in c#: public class HomeController : Controller { public int
I have a post-compilation step that manipulates the Java bytecode of generated classes. I'd
In handling a form post I have something like public ActionResult Insert() { Order
I have a Rails app that will post some data to another Rails app.
I have entities Post and Tag , where there is a many-to-many relationship between
I have to POST some parameters to a URL outside my network, and the

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.