Prior to Q1 I used this in my subreport:
| private void MySubReport_NeedDataSource(object sender, EventArgs e) |
| { |
| Processing.Report report = (Processing.Report)sender; |
| Processing.IDataObject dataObj = (Processing.IDataObject)report.DataObject; |
| MyClass myObj = dataObj.RawData as MyClass; |
| ... |
| } |
In Q1 raw data returns null. Is there a way to cast MyClass or is my access restricted to String s = dataObj["valName"]; ?
Thanks