如何自动将数据注释添加到生成的实体



我有一堆从数据库连接自动生成的实体类。我想自动添加数据注释,例如,如果列的类型为 varchar(100(,那么我希望将数据注释[StringLength(100)],或者如果它不是可为空的字段,我想拥有[Required]注释。这可能吗?

我发现的唯一一个问题已经快 10 年了,当时的答案不再有效。

提前感谢任何帮助。

通过更多的研究和一些反复试验,我设法做到了。基本上,它涉及编辑实体框架生成的 T4 模板。

添加ADO.NET Entity Data Model> EF Designer from data...后,您将获得一个 EDMX 文件,如果在 Visual Studio 上展开它,则会有一个与 .edmx 文件同名的 .tt 文件。

在该文件中,我在<#=codeStringGenerator.UsingDirectives(inHeader: false)#>下添加了数据注释的 using 语句:

using System.ComponentModel.DataAnnotations;
然后,在

下面的几行,在simpleProperties声明之后,在foreach中,我添加了以下内容:

foreach (var edmProperty in simpleProperties) // <-- Original foreach statement
        {
            if(edmProperty.Nullable == false)
            {
            #>    [Required]
<#
            }
            if(edmProperty.MaxLength != null)
            {
            #>    [StringLength(<#=edmProperty.MaxLength#>)]
<#
            }
//Rest of the auto-generated code...

保存此文件将相应地更新自动生成的.cs文件:

namespace MyNamespace
{
    using System;
    using System.Collections.Generic;
    using System.ComponentModel.DataAnnotations;
    public partial class MyModel
    {
        [Required]
        public int Id { get; set; }
        [Required]
        [StringLength(20)]
        public string MyField { get; set; }
    }
}

相关内容

  • 没有找到相关文章

最新更新