0
Good afternoon, I need to self-relatify and I’m really confused how I’m supposed to do this. In my system I have several process variables, a same process variable can be Father of several other variables, but this same variable can also be daughter of other variables. I saw some ways to self-relatify, but none of them seemed "right" to my case.
public class VariavelProcesso
{
public int VariavelProcessoId { get; set; }
public int? VariavelPaiId { get; set; }
public virtual VariavelProcesso VariavelPai { get; set; }
public string Nome { get; set; }
}
The title says one thing and the text says another.
– novic