我有一个从 XML 创建 C# 类的 XSLT。我正在使用
<xsl:output method="text"/>
创建一个文本文件。基本上我从http://docstore.mik.ua/orelly/xml/jxslt/ch08_05.htm 获取代码并将其修改为输出 C# 代码。
但现在我需要输出类似
class PersonValidator : AbstractValidator<Person>
{
public PersonValidator()
{
RuleFor(obj => obj.LastName).NotEmpty();
...
}
}
...但是无论我想输出 '<' 或 '>' 我得到 '<' 和'>'。
有没有简单的方法来实现这一点?
编辑:
这是我当前的 XSLT(CDATA 不起作用!):
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:variable name="className" select="/Class/@Name"/>
<xsl:variable name="entityId" select="(//Property)[1]/@Name"/>
<xsl:template match="/Class">using System;
using System.Linq;
using Core.Common.Core;
using FluentValidation;
using System.Collections.Generic;
namespace PersonDosimetry.Client.Entities.Constants
{
public class <xsl:value-of select="$className"/>
<xsl:text> : ObjectBase</xsl:text>
{
<xsl:apply-templates select="Property" mode="generateField"/>
<xsl:text>
#region Business-mapped Properties
</xsl:text>
<xsl:apply-templates select="Property" mode="generateProperty"/>
#endregion
#region Validation
class <xsl:value-of select="$className"/>Validator : AbstractValidator<![CDATA[<]]><xsl:value-of select="$className"/><![CDATA[>]]>
{
public <xsl:value-of select="$className"/>Validator()
{
//RuleFor(obj =<![CDATA[>]]> obj.LastName).NotEmpty();
}
}
protected override IValidator GetValidator()
{
return new <xsl:value-of select="$className"/>Validator();
}
#endregion
}
}
</xsl:template>
<!--
*****************************************************************
** Generate a private field declaration.
**************************************************************-->
<xsl:template match="Property" mode="generateField"><xsl:text> </xsl:text>
<xsl:value-of select="@Type"/>
<xsl:text> _</xsl:text>
<xsl:value-of select="@Name"/>;
</xsl:template>
<!--
*****************************************************************
** Generate a "get" method for a property.
**************************************************************-->
<xsl:template match="Property" mode="generateProperty">
public <xsl:value-of select="@Type"/><xsl:text> </xsl:text><xsl:value-of select="@Name"/>
{
get { return _<xsl:value-of select="@Name"/>; }
set
{
if (_<xsl:value-of select="@Name"/> != value)
{
_<xsl:value-of select="@Name"/> = value;
OnPropertyChanged();
}
}
}
</xsl:template>
</xsl:stylesheet>
我的示例 XML:
<?xml version="1.0"?>
<Class Name="Person">
<Property Name="PersonId" Type="Int32" />
<Property Name="FirstNames" Type="String" />
<Property Name="LastName" Type="String" />
<Property Name="GenderTypeId" Type="Int32" />
<Property Name="BirthDate" Type="DateTime" />
<Property Name="InsuranceNumber" Type="String" />
<Property Name="Country" Type="String" />
<Property Name="Beruf" Type="String" />
</Class>