我想将datatable
绑定到rdlc
报告。
datatable
字段的名称包含特殊字母,例如
avg(%)
xsd.file
xsd.file
中的字段名称与dataTable
中的字段名称不同。因此,我无法将datatable
绑定到rdlc
报告。
以下是我的代码:
LocalReport report = new LocalReport();
report.SetParameters(new ReportParameter("name"), name));
... (???)
report.DataSources.Add(new ReportDataSource("Student", dt as DataTable));
请帮帮我。