Hello,
i have the following construction:
Normal
0
21
false
false
false
DE
X-NONE
X-NONE
/* Style Definitions */
table.MsoNormalTable
{mso-style-name:"Normale Tabelle";
mso-tstyle-rowband-size:0;
mso-tstyle-colband-size:0;
mso-style-noshow:yes;
mso-style-priority:99;
mso-style-parent:"";
mso-padding-alt:0cm 5.4pt 0cm 5.4pt;
mso-para-margin-top:0cm;
mso-para-margin-right:0cm;
mso-para-margin-bottom:8.0pt;
mso-para-margin-left:0cm;
line-height:107%;
mso-pagination:widow-orphan;
font-size:11.0pt;
font-family:"Calibri",sans-serif;
mso-ascii-font-family:Calibri;
mso-ascii-theme-font:minor-latin;
mso-hansi-font-family:Calibri;
mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:"Times New Roman";
mso-bidi-theme-font:minor-bidi;
mso-fareast-language:EN-US;}
File1:
namespace Models.EF
{
public partial class TABELLE
{
public long SATZART
{ get; set; }
}
}
File2:
namespace Models.EF
{
/// <summary>
/// Hier nichts zu tun, keine Properties, GARNIX, reiner Link auf die
MetaDatenKlasse
/// </summary>
[MetadataType(typeof(TABELLEMetadata))]
public partial class TABELLE : Pruefungen.EffValidate
{
}
internal sealed class TABELLEMetadata
{
/// <summary>
/// Die Satzartnummer
/// </summary>
/// <value>
/// int - 5Stellig
/// </value>
[Key]
[Required]
[Annotations.EffRangeMax5]
public object SATZART
{ get; set; }
}
}
So the summary of the Property "SATZART" is stored in the partial class metadata (TABELLEMetadata)
i cant change the initial file with the property SATZART because it is auto generated(Entity Framework)
How can I see the summary in my GhostDoc generated Website Documentation ?