报告RDLC,报告数据源现在丢失

时间:2011-06-30 11:24:03

标签: c# .net asp.net rdlc report

我必须修改我们系统生成的其中一个报告。 这些报告是使用RDLC文件生成的。

我添加了必要的后端以获取新字段“EmployeeName”所需的信息。

//lunchtime report
lunch.Reason = request.SqlDataReaderResult["Reason"].ToString();
lunch.Record_No = (int)request.SqlDataReaderResult["Record_No"];
lunch.Seq = (int)request.SqlDataReaderResult["Seq"];
lunch.EmployeeName = request.SqlDataReaderResult["EmployeeName"].ToString(); // new field

但是当我在我的rdlc文件中打电话时

“=字段!EmployeeName.Value”

导致错误:

Error   1   The Value expression for the textbox ‘textbox14’ refers to the field ‘EmployeeName’. Report item expressions can only refer to fields within the current data set scope or, if inside an aggregate, the specified data set scope.

我去尝试删除数据源并重新添加它用于RDLC,但它不再出现在数据源列表中。

以前有人遇到过这个问题吗?

1 个答案:

答案 0 :(得分:1)

  1. 创建或修改数据集文件something.xsd,使其与新定义匹配。
  2. 使用此新定义重新创建数据集。
  3. 你已经完成了。将DataReader重新绑定到报表时,不会出现运行时错误。