T4 enerate for me some entities like this :
public partial class Use
{
public int UseId { get; set; }
public int ProgramId { get; set; }
public System.DateTime InUseDate { get; set; }
}
i whant to add documentation to this entity. i proceed like folowing:
[MetadataType(typeof(UseData))]
public partial class Use {
}
public class UseData
{
/// <summary>
/// This is an ID
/// </summary>
[Display(
Name = "Use ID",
Description = "This is an ID Desc")
]
public int UseId;
}
but VS autocomplete dont show me the summary of my UseIdattribute.
any ideas