It's in CommonSqlCode.cs...
#region PascalCasing style
/// <summary>
/// Indicates the style of Pascal casing to be used
/// </summary>
public enum PascalCasingStyle
{
/// <summary>
/// No pascal casing is applied
/// </summary>
None,
/// <summary>
/// Original .NetTiers styling (pre SVN553)
/// </summary>
Style1,
/// <summary>
/// New styling that handles uppercase (post SVN552)
/// </summary>
Style2,
}
#endregion
To use it you need to include a reference to the CommonSqlCode in your template. If you take a look in some of the netTiers templates you'll see the first line is quite often something like this...
<%@ CodeTemplate src="..\TemplateLib\CommonSqlCode.cs" Inherits="MoM.Templates.CommonSqlCode" Language="C#" TargetLanguage="C#" Description="Template description here." Debug="True" ResponseEncoding="UTF-8" NoWarn="0108,0618,1572,1573,1574,0162,2002"%>
hth
swin