Class OrderCoordinator<T>
Order coordinator.
Inherited Members
Namespace: Acoustics.Shared
Assembly: Acoustics.Shared.dll
Syntax
public class OrderCoordinator<T>
Type Parameters
Name | Description |
---|---|
T | Type to order. |
Constructors
| Improve this Doc View SourceOrderCoordinator()
Initializes a new instance of the OrderCoordinator<T> class.
Declaration
public OrderCoordinator()
Properties
| Improve this Doc View SourceOrders
Gets Orders.
Declaration
public List<IOrderer<T>> Orders { get; }
Property Value
Methods
| Improve this Doc View SourceApplyOrders(IQueryable<T>)
Apply orders.
Declaration
public IQueryable<T> ApplyOrders(IQueryable<T> source)
Parameters
Type | Name | Description |
---|---|---|
IQueryable<T> | source | The source. |
Returns
Type | Description |
---|---|
IQueryable<T> | Queryable ordered by Orders. |
Remarks
note, did not return IOrderedQueryable to support ability to return with empty Orders.
OneOrder<TOrderProperty>(Expression<Func<T, TOrderProperty>>, SortDirection)
Create an order with one order specified.
Declaration
public static OrderCoordinator<T> OneOrder<TOrderProperty>(Expression<Func<T, TOrderProperty>> orderExpr, SortDirection sortDirection)
Parameters
Type | Name | Description |
---|---|---|
Expression<Func<T, TOrderProperty>> | orderExpr | The order expr. |
Sort |
sortDirection | The sort Direction. |
Returns
Type | Description |
---|---|
Order |
A new ordercooodrinator. |
Type Parameters
Name | Description |
---|---|
TOrderProperty | The property being ordered by. |