检测t4模板中的类继承

时间:2018-04-27 17:03:38

标签: c# t4

你能找到一个班级吗? t4模板中继承的属性?

我有两个类,如:

public class User : ManagedRecord
{
   public int UserId { get; set;}
   public string UserName { get; set;}
}

public abstract class ManagedRecord
{
   public int Deleted { get; set;}
   public DateTime CreatedDate { get; set;}
}

当t4模板基于用户创建字段时,它将首先放置ManagedRecord字段,然后放置User的字段。

有没有办法检测继承的类字段,以便我可以区别对待它们?

t4模板用于ASP.NET MVC 5编辑页面模板,该模板根据使用的类创建表单字段。

t4代码如下:

<#@ template language="C#" HostSpecific="True" #>
<#@ output extension=".cshtml" #>
<#@ include file="Imports.include.t4" #>
@model <#= ViewDataTypeName #>
<#
    string boolType = "System.Boolean";
    int tabIndex = 1;
    bool autofocus = true;
    Version requiredMvcVersion = new Version("5.1.0.0");
    bool isControlHtmlAttributesSupported = MvcVersion >= requiredMvcVersion;


foreach (PropertyMetadata property in ModelMetadata.Properties) {
if (property.Scaffold && !property.IsAssociation) {
#>
    @Html.EditorFor(model => model.<#= property.PropertyName #>)
<#
}
#>

1 个答案:

答案 0 :(得分:1)

我找到了一个在我的场景中有效的解决方案。您可以修饰属性以表明您不想支撑列。

using System.ComponentModel.DataAnnotations;
namespace YourNameSpace
{
    public abstract class ManagedRecord
    {
        [ScaffoldColumn(false)]
        public DateTime CreatedDate{ get; set; }

        [ScaffoldColumn(false)]
        public bool Deleted { get; set; }
    }
}