I have the following classes:
public class objeto1
{
public string Descricao {get;set;}
public List<objeto2> Objeto2 {get;set}
}
public class objeto2
{
public string Descricao {get;set}
public decimal Valor {get;set}
}
I'm using Crystal Reports and would like to use the object1 class to build a report. So I can send a list of object1 and read it in Crystal Reports . Home The problem is that I can only view the Description property of object1 , but I can not access the List of object2 no Database Fields . Home It is worth mentioning that this is the first time I use CR.