entity-framework – 在使用Model-First方法时,如何将XML注释添加到Entity Framework生成的自动生成的类中?

前端之家收集整理的这篇文章主要介绍了entity-framework – 在使用Model-First方法时,如何将XML注释添加到Entity Framework生成的自动生成的类中?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已将信息添加到图形编辑器中的Documentation.Summary属性中,但未将其添加生成的类中.有没有办法做到这一点?
我发现答案是改变T4模板(解决方案中的.tt文件).这负责生成C#类代码.找到您想要添加摘要信息的任何位置(例如在写出的每个简单属性之前).例如,以下是简单属性的更改代码
<#
if (simpleProperties.Any()) {
    foreach (var edmProperty in simpleProperties) {
        if (edmProperty.Documentation != null) {
#>
    ///<summary><#=edmProperty.Documentation.Summary #></summary>
<#
        }
#>
    <#=codeStringGenerator.Property(edmProperty)#>
<#
    }
}
#>
原文链接:https://www.f2er.com/xml/292068.html

猜你在找的XML相关文章