I am trying to create a parent/child report for a single item, a Job, which contains Parts.
I want to present the Job object, containing the Parts, to the Report. However, when I try to access the Parts, defined as List<Part>, I cannot access it's attributes, only the attributes of the List itself (Capacity and Count).
What am I doing wrong?
Thanks Larzeb
public class Job { public Job() { PartList = new List<JobPart>(); } public int Id { get; set; } public string JobNumber { get; set; } public string Name { get; set; } public List<JobPart> PartList { get; set; } public DateTime ServiceDate { get; set; } public decimal SalesTaxRate { get; set; } public string Comments { get; set; }}