Enum QueryableExecuterApplyType
A bitwise flag of options that can be used from a QueryableExecuter
Namespace: LemonEdge.Utils
Assembly: Utils.dll
Syntax
public enum QueryableExecuterApplyType : short
Fields
Name | Description |
---|---|
All | A bit wise value indicating all Where, Ordering, Skip and Top shold be applied |
OrderBy | Indicates Ordering should be applied |
Skip | Indicates any Skip value should be applied (normally requires Ordering too) |
Top | Indicates any Top value should be applied (normally requires Ordering too) |
Where | Indicates Where filters should be applied |