我目前有一个从 XML 模式生成的 C# 类,它用于获取 XML 文件并更新数据库中的值。
我卡住的地方是这些值之一(由于复杂性和可变性)需要作为独立的 xml 存储在数据库中,然后我需要在运行时对其进行反序列化。
是否可以定义第二个 C# 类来处理这一元素而不干扰主类。
或者在重新序列化以保存时更改此节点的名称会更容易吗?
编辑:我为缺乏背景而道歉,已经很晚了,我已经出门了。XML 文件用于为不同的客户端设置 Web 表单验证和自定义,至少 80% 的模式是非常简单的数据(强制字段、应用正则表达式、隐藏和显示字段是一些示例)
我提到的复杂部分与多个字段之间的条件验证有关。下面是 XML 的样例:
<?xml version="1.0"?>
<Relationships>
<Relationship xsi:type="MutuallyExclusiveRelationship">
<Fields>
<Field Id="lineItemAfeNumber" IsInGrid="true"/>
<Field Id="lineItemCostCenter" IsInGrid="true"/>
</Fields>
</Relationship>
</Relationships>
<Fields>
<Field xsi:type="TextField" Id="invoiceNumber">
<ValidationRegex Value="^[0-9a-zA-Z\-]*$"/>
<ValidationRegexMessage Value="{0} must be alpha-numeric and can contain dashes."/>
<MaxLength Value="20"/>
</Field>
<Field xsi:type="TextField" Id="afeNumber">
<InputMask Value="aa999999"/>
<ValidationRegex Value="^[A-Za-z]{2}[0-9]{6}$"/>
<ValidationRegexMessage Value="{0} must be in the format AA999999."/>
</Field>
<Field xsi:type="TextField" Id="costCenter">
<ValidationRegex Value="^[a-zA-Z0-9]*$"/>
<ValidationRegexMessage Value="{0} must be alpha-numeric."/>
<MinLength Value="8"/>
<MaxLength Value="9"/>
</Field>
<Field xsi:type="TextField" Id="orderNumber">
<MinLength Value="1"/>
<MaxLength Value="12"/>
</Field>
<Field xsi:type="TextField" Id="generalLedgerCode">
<InputMask Value="9999.999"/>
<ValidationRegex Value="^[0-9]{4}\.[0-9]{3}$"/>
<ValidationRegexMessage Value="{0} must be in the format 0000.000."/>
</Field>
<Field xsi:type="TextField" Id="approverId">
<Label Value="Approver Code"/>
<MaxLength Value="10"/>
</Field>
<Field xsi:type="TextField" Id="leaseWell">
<Label Value="Location/UWI"/>
</Field>
<Field xsi:type="TextField" Id="poNumber">
<ValidationRegex Value="^[a-zA-Z0-9/-]*$"/>
<ValidationRegexMessage Value="{0} must be alpha-numeric and can contain '-'."/>
<MaxLength Value="12"/>
</Field>
<Field xsi:type="DropDownField" Id="currency">
<Label Value="Currency"/>
<DefaultValue Value="CAD"/>
<Values>
<DropDownValue Value="USD"/>
<DropDownValue Value="CAD"/>
</Values>
</Field>
<Field xsi:type="TextField" Id="remitToTax">
<Label Value="GST/HST #"/>
</Field>
<Field xsi:type="TextField" Id="detailsComment">
<Mandatory Value="false"/>
<MaxLength Value="40"/>
</Field>
<Field xsi:type="TextField" Id="newComment">
<MaxLength Value="40"/>
</Field>
<!-- Attachments -->
<Field xsi:type="TextField" Id="attachmentFileName">
<MandatoryMessage Value="Attachments are required."/>
</Field>
<Field xsi:type="DropDownField" Id="approverCompanyCode">
<Mandatory Value="true"/>
</Field>
<Field xsi:type="TextField" Id="recipientName">
<Mandatory Value="true"/>
</Field>
</Fields>
<Grids>
<Grid Id="invoiceDetailsTable">
<Fields>
<Field xsi:type="TextField" Id="lineItemDescription">
<MaxLength Value="40"/>
</Field>
<Field xsi:type="TextField" Id="lineItemAfeNumber">
<InputMask Value="aa999999"/>
<ValidationRegex Value="^[A-Za-z]{2}[0-9]{6}$"/>
<ValidationRegexMessage Value="{0} must be in the format AA999999."/>
</Field>
<Field xsi:type="TextField" Id="lineItemCostCenter">
<ValidationRegex Value="^[a-zA-Z0-9]*$"/>
<ValidationRegexMessage Value="{0} must be alpha-numeric."/>
<MinLength Value="8"/>
<MaxLength Value="9"/>
</Field>
<Field xsi:type="TextField" Id="lineItemOrderNumber">
<MinLength Value="1"/>
<MaxLength Value="12"/>
</Field>
<Field xsi:type="TextField" Id="lineItemLeaseWell">
<Label Value="Location/UWI"/>
<Mandatory Value="true"/>
</Field>
<Field xsi:type="TextField" Id="lineItemGlAccount">
<InputMask Value="9999.999"/>
<ValidationRegex Value="^[0-9]{4}\.[0-9]{3}$"/>
<ValidationRegexMessage Value="{0} must be in the format 0000.000."/>
</Field>
<Field xsi:type="TextField" Id="lineItemPoNumber">
<ValidationRegex Value="^[a-zA-Z0-9/-]*$"/>
<ValidationRegexMessage Value="{0} must be alpha-numeric and can contain '-'."/>
<MaxLength Value="12"/>
</Field>
</Fields>
</Grid>
</Grids>
这里的关系部分是我想要重新序列化的部分,这显然是该部分的一个简单示例,还有更多未显示的子元素。