OrderByExpression.GetQueryable(IQueryable) Method

Definition

Applies a sort expression to an IQueryable object based on a DataField value and a Direction value.

public:
 override System::Linq::IQueryable ^ GetQueryable(System::Linq::IQueryable ^ source);
public override System.Linq.IQueryable GetQueryable (System.Linq.IQueryable source);
override this.GetQueryable : System.Linq.IQueryable -> System.Linq.IQueryable
Public Overrides Function GetQueryable (source As IQueryable) As IQueryable

Parameters

source
IQueryable

Specifies the data source to apply the sort to.

Returns

An instance of the data source that the expression was applied to.

Applies to