2

我正在使用 .net framework 3.5 并在我的项目中使用 RDLC 文件进行报告。我面临的问题是,在我的数据集中我有一个数字命名的字段“63”,每当我在我的 RDLC 文件中使用它时,它都会向我显示这个错误

“数据集 'DataSet1' 中的字段名称为 '63'。字段名称必须是符合 CLS 的标识符。”

我已经完成了一些类似的事情。

1.) [程序集:CLSCompliantAttribute(false)]

在我项目的 assemblyInfo.cs

2.) 并将属性名称放在方括号下。例如:[63] 在我的数据集中。

但一切都徒劳无功任何帮助将不胜感激谢谢

4

2 回答 2

4

好的,那就试试这个。

  1. 打开.xsd 文件。

  2. 右键单击表。

  3. 选择配置。

  4. 在 select 语句中分配别名。

  5. 更新报告。

这个链接可能会帮助你

于 2013-07-05T04:54:00.790 回答
0

Ok I got an answer for it. only thing that is to be done is to change the name of the variable like fro "63" to "a63". To turn the name alphanumeric.

于 2013-07-08T05:13:45.587 回答