PrefetchExtensionsSortByTEntity Method (IEnumerableTEntity, ExpressionFuncTEntity, Object) |
Defines an ordering definition (ascending) on the collection specified. For prefetch path definitions
Namespace:
LLBLGen.Linq.Prefetch
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.8.0.0 (5.8.21.0111)
Syntax public static IEnumerable<TEntity> SortBy<TEntity>(
this IEnumerable<TEntity> collection,
Expression<Func<TEntity, Object>> order
)
where TEntity : class, IEntityCore
<ExtensionAttribute>
Public Shared Function SortBy(Of TEntity As {Class, IEntityCore}) (
collection As IEnumerable(Of TEntity),
order As Expression(Of Func(Of TEntity, Object))
) As IEnumerable(Of TEntity)
Parameters
- collection
- Type: System.Collections.GenericIEnumerableTEntity
- order
- Type: System.Linq.ExpressionsExpressionFuncTEntity, Object
Type Parameters
- TEntity
Return Value
Type:
IEnumerableTEntityUsage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IEnumerableTEntity. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also