Я хочу внедрить отчет как одну и ту же копию оригинала, Дубликат и трижды в одном отчете RDLC.
Ниже приведен фрагмент кода.
DataSet ds = ReportServiceManager.GetInvoiceDS(Id, type);
if (ds.Tables != null && ds.Tables[0].Rows.Count > 0)
{
localReport.DataSources.Add(new ReportDataSource("InvoiceReportDS", ds.Tables[0]));
renderedBytes = localReport.Render(reportType, "", out mimeType, out encoding, out fileNameExtension, out streams, out warnings);
ReportData rData = new ReportData() { ReportDataSource = renderedBytes, FileName = filename };
if (rData.HasReport)
{
ShowReport(rData);
return View();
}
}