1

我目前有一个从 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>

这里的关系部分是我想要重新序列化的部分,这显然是该部分的一个简单示例,还有更多未显示的子元素。

4

2 回答 2

0

将主类保存到数据库时,为什么不序列化这个复杂的元素?例如,如果您的课程是这样的:

public class Master
{
    public string simple;
    public Complex complex;
}

您可以在 db 中将复杂元素另存为 xml:

void SaveToDB(Stream file)
{
    XmlSerializer masterSerializer = new XmlSerializer(typeof(Master));
    Master m = (Master)masterSerializer.Deserialize(file);
    //save m.simple to db
    XmlSerializer complexSerializer = new XmlSerializer(typeof(Complex));
    StringWriter complexXmlWriter = new StringWriter();
    complexSerializer.Serialize(complexXmlWriter, m.complex);
    string complexXml = complexXmlWriter.ToString();
    //save complexXml to db
}

这样您就不需要更改您的大师班,您可以将复杂的元素保存在 xml 中。

于 2013-04-16T03:16:50.143 回答
0

经过一些进一步的调查和头脑风暴,我们确定这两个不同的序列化类实际上可以存在于不同的范围内,这消除了我遇到的冲突。

于 2013-04-16T16:03:40.367 回答