Good morning Telerik team ! In fact i come from the SSRS world, in wich I was able to simply pass an already calculated list of objects to the report datasource and I don't want to use the dataMember technique to recalculate the same list again because it takes a while !
-----------------------------------------------
This is an example when i use the rdlc report :*
LocalReport lr = new LocalReport
{
ReportPath = reportPath
};
ReportDataSource rds = new ReportDataSource();
rds.Name = "reportDs";
rds.Value = my already calculated List of objects
lr.DataSources.Add(rds);
-------------------------------------------------
Can you please help me on that because we need it so much and thanks in advance !