Link to home
Start Free TrialLog in
Avatar of MediaBanc
MediaBanc

asked on

Nested List

How to display in RDLC an object with nested List?

Example classes:
public class ClassA {
     public string Name { get; set; }
     public List<ClassB> Details { get; set; } }

public class ClassB {
     public string Name { get; set; }
     public List<string> Details { get; set; } }

Thanks.
ASKER CERTIFIED SOLUTION
Avatar of anandarajpandian
anandarajpandian
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial