RangeExpression.GetQueryable(IQueryable) Method

Definition

Gets the IQueryable object that the range comparison was performed on.

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

The object to use for the comparison.

Returns

An instance of the IQueryable object that the expression was applied to.

Exceptions

The DataField property is null.

-or-

The MinType and the MaxType properties are set to None.

-or-

The MinType or MaxType property is not set to None and the parameter collection is empty.

Remarks

This method uses the specified IQueryable object to resolve the expression.

Applies to