I have a class where I need to have 2 different relationships with the same table.
public class Usuario
{
public int Naturalidade {set;get;}
public int CidadeEndereco {set;get;
}
public class Cidade
{
public int Id {set;get;}
public string Nome {set;get;
}
How do I make this relationship? Can it be using Fluent API or Data Annotation?