Converts a partial class name into a fully one

Namespace: NHibernate.Cfg.XmlHbmBinding
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
protected static string FullClassName(
	string className,
	Mappings mappings
)
Visual Basic
Protected Shared Function FullClassName ( _
	className As String, _
	mappings As Mappings _
) As String
Visual C++
protected:
static String^ FullClassName(
	String^ className, 
	Mappings^ mappings
)

Parameters

className
Type: System..::..String

[Missing <param name="className"/> documentation for "M:NHibernate.Cfg.XmlHbmBinding.Binder.FullClassName(System.String,NHibernate.Cfg.Mappings)"]

mappings
Type: NHibernate.Cfg..::..Mappings

[Missing <param name="mappings"/> documentation for "M:NHibernate.Cfg.XmlHbmBinding.Binder.FullClassName(System.String,NHibernate.Cfg.Mappings)"]

Return Value

The class FullName (without the assembly)

Remarks

The FullName is equivalent to the default entity-name

See Also