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