When using a nested list of DTO's as the data source like this:
Code: Select all
public class Dto1
{
public string Something { get; set; }
public IList Data { get; set; } // Contans a list of Dto2 objects
}
public class Dto2
{
public string Something { get; set; }
public IList Data { get; set; } // Contans a list of Dto3 objects
}
public class Dto3
{
public string Something { get; set; }
}
...
StiOptions.Dictionary.BusinessObjects.MaxLevel = 5;
stiReport.RegData("MyData", new ArrayList
{
new Dto1
{
Something = "1",
Data = new ArrayList
{
new Dto2
{
Something = "2",
Data = new ArrayList
{
new Dto3
{
Something = "3"
}
}
}
}
}
});
...
Is this a limitation of the Demo version? (Maybe it's time to buy a full version

And another questions: Is it possible to control the name of the a datasources generated from the bussiness object graph and which properties should be visible somehow? May via attributes?
Thx!