i have looked but not found a tag for commenting in template studio.
e.g. excluding a block of template code from generation without actually deleting it from the template.
if i have missed something please advise. if not what are the chances of getting an 'ignore' tag into tdl?
example:
<[Ignore]>
/// <summary>
/// Dto class which represents the entity '<[CurrentEntityName]>'.<br/><br/>
/// <[Foreach CustomProperty Entity]>
/// <[CustomPropertyName]>: <[CustomPropertyValue]><br/><[NextForeach]>
/// </summary>
public <[If UsePartialClasses]>partial <[EndIf]>class <[CurrentEntityName]>Dto : <[ If IsSubType ]><[ SuperTypeName ]>Dto<[ Else ]>CommonDtoBase<[ EndIf ]><[Foreach AdditionalInterfaces]>, <[CurrentAdditionalInterface]><[NextForeach]>
{
#region Class Member Declarations
<[Foreach RelatedEntity OneToMany CrLf]><[If Not MappedFieldRelationIsHidden]> private DtoCollection<<[RelatedEntityName]>Dto> _<[CaseCamel MappedFieldNameRelation]>;<[EndIf]><[NextForeach]>
<[Foreach RelatedEntity ManyToMany CrLf]><[If Not MappedFieldRelationIsHidden]> private DtoCollection<<[RelatedEntityName]>Dto> _<[CaseCamel MappedFieldNameRelation]>;<[EndIf]><[NextForeach]>
<[Foreach RelatedEntity ManyToOne CrLf]><[If Not MappedFieldRelationIsHidden]> private <[RelatedEntityName]>Dto _<[CaseCamel MappedFieldNameRelation]>;<[EndIf]><[NextForeach]>
<[Foreach RelatedEntity OneToOne CrLf]><[If Not MappedFieldRelationIsHidden]> private <[RelatedEntityName]>Dto _<[CaseCamel MappedFieldNameRelation]>;<[EndIf]><[NextForeach]>
#endregion
#region Statics
private static Dictionary<string, string> _customProperties;
private static Dictionary<string, Dictionary<string, string>> _fieldsCustomProperties;
<[EndIgnore]>