EF6 根据数据库字段说明,生成字段注释

Posted 小小程序员

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了EF6 根据数据库字段说明,生成字段注释相关的知识,希望对你有一定的参考价值。

第一步: 在Model.tt文件添加一个方法读取数据库中的字段说明

  找到public string Property(EdmProperty edmProperty)这个方法,添加到这个方法下面

public string GetRemark(EdmProperty edmProperty){  
        //System.Diagnostics.Debugger.Launch();  
        var tableName = edmProperty.DeclaringType.Name;  
        var colName=_code.Escape(edmProperty);  
        //System.Diagnostics.Debugger.Break();  
        string sql = string.Format(@"SELECT  字段说明=isnull(props.[value],\'\')  FROM syscolumns cols  inner join sysobjects objs on cols.id= objs.id and  objs.xtype=\'U\' and  objs.name<>\'dtproperties\'  left join sys.extended_properties props on cols.id=props.major_id and cols.colid=props.minor_id  where  objs.name=\'{0}\' and cols.name=\'{1}\'",tableName,colName);  
        string sqlcon = "Data Source=191.108.12.130;User ID=sa;Password=123456;Initial Catalog=TTTT";  
        object remark=new object();  
        using(System.Data.SqlClient.SqlConnection conn = new System.Data.SqlClient.SqlConnection(sqlcon)){  
            conn.Open();  
            System.Data.SqlClient.SqlCommand cmd = new System.Data.SqlClient.SqlCommand(sql, conn);  
            remark =cmd.ExecuteScalar();      
        }        

 

 第二步:找到var simpleProperties = typeMapper.GetSimpleProperties(entity);修改如下:

var simpleProperties = typeMapper.GetSimpleProperties(entity);
    if (simpleProperties.Any())
    {
        foreach (var edmProperty in simpleProperties)
        {
        #>  
    /// <summary>  
    /// <#=codeStringGenerator.GetRemark(edmProperty)#>  
    /// </summary>  
    <#=codeStringGenerator.Property(edmProperty)#>  
<# 
        }
    }

第三步:保存模板,就可以看到实体字段注释

 

以上是关于EF6 根据数据库字段说明,生成字段注释的主要内容,如果未能解决你的问题,请参考以下文章

根据excel生成create建表SQL语句

根据excel生成create建表SQL语句

根据excel生成create建表SQL语句

使用T4模板为EF框架添加实体根据数据库自动生成字段注释的功能

代码生成器

从PowerDesigner表字段的Name到EF实体类属性的Display Name(根据PowerDesigner生成EF实体类中文注释和验证元数据)