显然,使用Visual Studio 2015创建的报告(RDLC文件):
<Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner">使用与使用Visual Studio 2012创建的架构相同的架构:
<Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner">它们似乎是“兼容的”,也就是说,我可以在Visual Studio 2015中打开用Visual Studio 2012创建的RDLC文件-没有必要将其转换为新的格式(就像以前的Visual Studio版本那样)。
这是否意味着我可以使用(旧的) Report Viewer 2012 Redistributable (已安装在我客户的PC上)来呈现使用Visual Studio 2015创建的报表,还是需要将我的客户升级到Report Viewer 2015 Redistributable?
发布于 2015-10-23 19:42:11
RDLC是Report Definition Language for Clients的缩写,自2010 RDL以来一直没有发布新的RDL Schema版本,这解释了为什么它在Visual Studio2015中是“兼容的”。
即使您计划使用不同的架构,您也应该能够使用Report Viewer 2012呈现这些报表。
来源:MSDN - Plan for Report Design and Report Deployment (Reporting Services)
https://stackoverflow.com/questions/33255341
复制相似问题