1
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 the Crystal Reports and would like to use the class of object 1 to build a report. So I can send a list of object 1 and do the reading on Crystal Reports.
The problem is I can only visualize the property Description of object 1, but I can’t access List of object2 in the Database Fields.
It is worth mentioning that it is the first time I use CR.