문제

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 dataset and create new one every time which is not feasible at all. Hope someone have better way of doing this.

도움이 되었습니까?

해결책

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>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top