I think BusinessObject( with RegBusinessObject()) doesn't work in Hierarachical Data Band.
Is it another limitation of RegBusinessObject?
Code: Select all
public class Employee
{
private string employeeName;
public string EmployeeName
{
get
{
return employeeName;
}
set
{
employeeName = value;
}
}
private string reportTo;
public string ReportTo
{
get
{
return reportTo;
}
set
{
reportTo = value;
}
}
}