Implementation of IFieldNamingStrategy for fields that are prefixed with an m_ and the first character in PropertyName capitalized.

Namespace:  NHibernate.Property
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Class PascalCaseMUnderscoreStrategy _
	Implements IFieldNamingStrategy
C#
public class PascalCaseMUnderscoreStrategy : IFieldNamingStrategy
Visual C++
public ref class PascalCaseMUnderscoreStrategy : IFieldNamingStrategy
JavaScript
NHibernate.Property.PascalCaseMUnderscoreStrategy = function();

Type.createClass(
	'NHibernate.Property.PascalCaseMUnderscoreStrategy',
	null,
	NHibernate.Property.IFieldNamingStrategy);

Inheritance Hierarchy

System..::.Object
  NHibernate.Property..::.PascalCaseMUnderscoreStrategy

See Also