我必须修改我们系统生成的其中一个报告。 这些报告是使用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,但它不再出现在数据源列表中。
以前有人遇到过这个问题吗?
答案 0 :(得分:1)
你已经完成了。将DataReader重新绑定到报表时,不会出现运行时错误。