What I'm trying to do is to create a report using a datasource that also contains a child list.
So, an simple example is as follows, where a List of Items is my datasource and I want to also display the list of tasks.
public class Item
{
public string itemName;
public List<Task> tasks;
}
public class Task
{
public string taskName;
}
The problem is that when I add the datasource, itemName shows up as a field but I can't see the tasks.
I found this question: How to display a child List inside of the DataSource in VS Report Viewer 2008? which seems similar, but I couldn't understand the answer. I'm pretty new at these reports so any help would be appreciated.
Thanks, Matt