Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前面临一个问题,即我只能将 1 个数据集与 1 个 report.rdlc 绑定。我在数据集中有 2 个数据表。有什么方法可以在单个报告中显示 2 个数据表?
AFAIK,没有使用 Crystal Reports 的选项。但是,有两种可能的方法可以解决此问题:-
为这个报告创建一个自定义数据表,它结合了每个数据表中您需要的字段,并将这个新数据表绑定到这个报告
创建嵌入报表的子报表,并将第二个数据表绑定到该子报表。
report.SetDataSource(new[] { debitCreditMain }); report.Subreports["details"].SetDataSource(debitCreditMain.DetailList);