Descending Order

Namespace: Castle.ActiveRecord
Assembly:  Castle.ActiveRecord (in Castle.ActiveRecord.dll)
Version: 1.0.3.0

Syntax

C#
public static Order[] Desc(
	params string[] propertyNames
)

Parameters

propertyNames
array<String>[]()
List of property names to order by descending

Return Value

Array of Order objects suitable for passing to FindAll and variants

Remarks

Returns an array of Descending Order instances specifing which properties to use to order a result.

See Also