Access FK attribute in Framewokr entity

0

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.

    
asked by anonymous 16.10.2017 / 23:26

0 answers