I need to do a self-relationship in one of the entities, how do I reference the entity itself for both child records and the parent record?
public class Comentario
{
public int IdComentario { get; set; }
public int? IdComentarioPai { get; set; }
public string Texto { get; set; }
public DateTime Data { get; set; }
public ICollection<Comentario> Respostas { get; set; }
public Comentario ComentarioPai { get; set; }
}