我有 T4 模板,我想在其中生成一个 .cs 文件。
我有一个数组System.Data.DataColumn
,我想在生成的代码文件中用作私有变量。
我ColumnName
用作变量名、Value
变量值和DataType
变量数据类型。
我正在考虑在这种情况下如何初始化定义的变量:
ColumnName = "col1"
ColumnValue = "text"
DatType = System.String
我想看看输出:private System.String col1 = "text";
T4模板中的变量定义:
private <#= DataType.ToString() #> <#= ColumnName #> = "<=# ColumnValue #>"
我正在考虑编写辅助方法,它将返回常见数据类型的变量初始化字符串。就像是:
public string ValueInitializerString
{
get
{
string valueString;
if (this.DataType == typeof(int))
{
valueString = this.Value.ToString();
}
else if (this.DataType == typeof(string))
{
valueString = string.Format("\"{0}\"", this.Value);
}
else if (this.DataType == typeof(DateTime))
{
DateTime dateTime = (DateTime)this.Value;
valueString = string.Format("new DateTime({0}, {1}, {2}, {3}, {4}, {5}, {6})",
dateTime.Year, dateTime.Month, dateTime.Day, dateTime.Hour, dateTime.Minute, dateTime.Second, dateTime.Millisecond);
}
else
{
throw new Exception(string.Format("Data type {0} not supported. ", this.DataType));
}
return valueString;
}
}
如果有人做了类似的事情,你能建议这是一个好主意还是可以以更方便的方式完成?也许我应该读点什么?