Hi All,
I'm interesting is it possible to use Business Object Datasource for reporting ?
I mean how to display complex values, let me explain with example:
I have classes:
| public class SubClass |
| { |
| public string Name {get;set;} |
| } |
| |
| public class MyClass |
| { |
| public string Name {get;set;} |
| public SubClass subClass {get;set;} |
| } |
And also have a
| List<MyClass> list = MyBusinessLogic.GetList(); |
I know how to set report datasource to list, but how to display MyClass.subClass.Name ?
=Fields.subClass.Name don't work.
Thanks.