I have the class Cliente
which has a IList<Produto>
and the produto
class has a ClienteId
(which is the FK) and a Cliente Cliente { get; set; }
attribute. How do I access the Nome
attribute of Cliente
in product?
public class Cliente
{
....
public string Nome {get;set;}
public IList<Produto> Produtos {get;set;}
}
public class Produto
{
....
public int ClienteId {get;set;}
public Cliente Cliente{get;set;}
}
NOTE: All fields are mapped, and are bringing data.