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

The Archive Base Latest Questions

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

How can I set parent-child relation on same table? Id int, title string, ParentId

  • 0

How can I set parent-child relation on same table?

Id int,  title string,  ParentId int  ---> this is refer to Id 
  • 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:45:31+00:00Added an answer on May 10, 2026 at 11:45 pm

    What ActiveRecord implementation are you using?

    In Castle ActiveRecord, if your table looked like this:

    table Document (    Id int primary key,    ParentDocumentId int,    Title string ) 

    you’d use the following syntax:

    [ActiveRecord(Table = 'Document')] public class Document : ActiveRecordBase<Document> {      private int id;     private Document parent;     private string title;     private List<Document> children = new List<Document>();      [PrimaryKey]     public int Id {         get { return id; }         set { id = value; }      }      [BelongsTo('ParentDocumentId')]     public virtual Document Parent {         get { return parent; }         set { parent = value; }     }      [HasMany(Table = 'Document', ColumnKey = 'ParentDocumentId', Inverse = true, Cascade = ManyRelationCascadeEnum.All)]     public IList<Document> Children {         get { return children.AsReadOnly(); }         private set { children = new List<Document>(value); }     }      [Property]     public string Title {         get { return title; }         set { title = value; }     } } 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a parent/child relation table, many to many parentid int not null childid
I have parent/child relationship set up via Node Reference. A Child record can have
I have a parent-/child relationship of folders, which looks like this: A folder can
I can set the parent's status bar text with this function I wrote void
I have a one-to-many relation between Parent and Child table. In the parent object
So if the parent div's height is 100% then you can set the child
Usually, we can set a parent element to be the context for a child's
Why I can't get the min-height of an object when its parent is set
I can set the event on the calendar on my device by using this
I've defined table with this schema : CREATE TABLE [dbo].[Codings] ( [Id] [int] IDENTITY(1,1)

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.