在哪里可以找到以Visual Studio Report Designer命名空间为目标的xml架构(xsd)

时间:2013-04-26 17:43:43

标签: rdlc

我之所以需要这个,是以编程方式创建.rdlc文件,然后可以在Visual Studio报表设计器中打开。我知道报告定义xsd很容易获得,但需要报告设计器xsd (在下面用“rd”前缀表示)

这是由Visual Studio报表设计器生成的.rdlc文件的根节点

 <Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner">

换句话说,我需要一个以

开头的XSD
<xsd:schema targetNamespace="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner" ... />

有谁知道在哪里找到这样的XSD?

1 个答案:

答案 0 :(得分:1)

I entered this URL in the address bar of the browser: http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition

And it loaded a page with a link to the XSD enter image description here

Clicked on the link and it opened the XSD file.