我正在尝试使用If else语句来计算基于从循环传入的对象的值。这个模板一直有效,直到我添加到if else块中,它说它不能用作语句。思考??
<#@ template language="C#" #>
<#@ assembly name="System.Core" #>
<#@ import namespace="System.Linq" #>
<#@ import namespace="System.Text" #>
<#@ import namespace="System.Collections.Generic" #>
<#@ import namespace="CookieCutterDT" #>
<#@ import namespace="CookieCutterBL.DT_Template" #>
namespace <#= NameSpace #>
{
public class <#= ClassName #>
{
<#
foreach(ColumnDT c in Columns)
{#>
public <# if (c.IsNullable && c.DataType != "string" && c.DataType != "string []") { c.DataType + "?"; } else { c.DataType; } #> <#= c.ColumnName #> { get; set; };
<#
}
#>
}
}
if else正在检查列是否为可空字段,如果是,则使其在C#中的数据类型也可以为空。
答案 0 :(得分:7)
if
&#39s / then / else部分中的表达式不会生成代码。你应该这样写:
public <# if (c.IsNullable && c.DataType != "string" && c.DataType != "string []") { #>
<#= c.DataType + "?" #>
<# } else { #>
<#= c.DataType #>
<# } #> <#= c.ColumnName #> { get; set; };
或者,使用条件运算符?:
作为更短的替代方法是:
<#= (c.IsNullable && c.DataType != "string" && c.DataType != "string []") ? (c.DataType + "?") : c.DataType #>
答案 1 :(得分:0)
我能够自己解决这个问题,刚刚看到一篇文章给了我尝试.Write方法的想法,并且bam可行!以防其他人遇到类似的问题。
public <# if (c.IsNullable && c.DataType != "string" && c.DataType != "string []") { this.Write(c.DataType + "?"); } else { this.Write(c.DataType); } #> <#= c.ColumnName #> { get; set; };