I have the following case:
public class Table
{
public int Id {get;set;}
public int ParentId {get;set;}
// Which attribute should I specify here, to map Childrens
// to any record that has ParentId equals to my Id?
public List<Table> Childrens {get;set;}
}
As the comment, which attribute should I specify here, to map Childrens to any record that has ParentId equals to my Id?
Thanks