Provide the list of progressive-paths

Namespace: NHibernate.Mapping.ByCode
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public static IEnumerable<PropertyPath> InverseProgressivePath(
	this PropertyPath source
)
Visual Basic
<ExtensionAttribute> _
Public Shared Function InverseProgressivePath ( _
	source As PropertyPath _
) As IEnumerable(Of PropertyPath)
Visual C++
[ExtensionAttribute]
public:
static IEnumerable<PropertyPath^>^ InverseProgressivePath(
	PropertyPath^ source
)

Parameters

source
Type: NHibernate.Mapping.ByCode..::..PropertyPath

[Missing <param name="source"/> documentation for "M:NHibernate.Mapping.ByCode.PropertyPathExtensions.InverseProgressivePath(NHibernate.Mapping.ByCode.PropertyPath)"]

Return Value

Given a path as : Pl1.Pl2.Pl3.Pl4.Pl5 returns paths-sequence as: Pl5 Pl4.Pl5 Pl3.Pl4.Pl5 Pl2.Pl3.Pl4.Pl5 Pl1.Pl2.Pl3.Pl4.Pl5

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type PropertyPath. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .

See Also