customers.xsd

来自「Mastering VBNet Include Source Code」· XSD 代码 · 共 21 行

XSD
21
字号
<xsd:schema id="Customers" targetNamespace="http://www.tempuri.org/Customers.xsd" xmlns="http://www.tempuri.org/Customers.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" attributeFormDefault="qualified" elementFormDefault="qualified">
	<xsd:element name="Customers" msdata:IsDataSet="true">
		<xsd:complexType>
			<xsd:choice maxOccurs="unbounded">
				<xsd:element name="Customers">
					<xsd:complexType>
						<xsd:sequence>
							<xsd:element name="CustomerID" type="xsd:string" />
							<xsd:element name="CompanyName" type="xsd:string" />
						</xsd:sequence>
					</xsd:complexType>
				</xsd:element>
			</xsd:choice>
		</xsd:complexType>
		<xsd:unique name="Constraint1" msdata:PrimaryKey="true">
			<xsd:selector xpath=".//Customers" />
			<xsd:field xpath="CustomerID" />
		</xsd:unique>
	</xsd:element>
</xsd:schema>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?