I am using the folowing business object as the data source of my report
How do I referrence the items in dataRow on the report. In the text box on the report I have =dataRow.W5_Runtime. When I run the report I get an error that W5_Runtime does not exist. W5_Runtime is a member of dataRow.
Thanks,
Jim
class BlendingModel |
{ |
private List<BlendingModelRow> _dataRow = new List<BlendingModelRow>(); |
public DateTime StartDate { get; set; } |
public DateTime EndDate { get; set; } |
public List<BlendingModelRow> dataRow { get { return _dataRow; } set { _dataRow = value; } } |
} |
How do I referrence the items in dataRow on the report. In the text box on the report I have =dataRow.W5_Runtime. When I run the report I get an error that W5_Runtime does not exist. W5_Runtime is a member of dataRow.
Thanks,
Jim