Update datasouce in RDLC report

前端 未结 1 2028
执笔经年
执笔经年 2021-01-27 13:21

I am using SQL views to pass data to RDLC report. Now If I add a column to SQL view, How can I get this newly added column in RDLC report.

For now, I have to delete RDLC

相关标签:
1条回答
  • 2021-01-27 13:53

    You can open your report in any XML editor, locate your dataset and add more columns (of desired type) in Fields section. For example:

        <Field Name="NewColumnName">
          <DataField>NewColumnName</DataField>
          <rd:TypeName>System.String</rd:TypeName>
        </Field>
    
    0 讨论(0)
提交回复
热议问题