AllowedQueryOptions Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The QueryExpression properties to allow for querying.
This enumeration supports a bitwise combination of its member values.
public enum class AllowedQueryOptions
[System.Flags]
public enum AllowedQueryOptions
[<System.Flags>]
type AllowedQueryOptions =
Public Enum AllowedQueryOptions
- Inheritance
-
AllowedQueryOptions
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | A value that corresponds to allowing no query options. |
Filter | 1 | A value that corresponds to allowing the Criteria QueryExpression property. |
LinkEntity | 2 | A value that corresponds to allowing the LinkEntity QueryExpression property. |
Project | 4 | A value that corresponds to allowing named columns in the ColumnSet QueryExpression property. |
OrderBy | 8 | A value that corresponds to allowing the Orders QueryExpression property. |
Top | 16 | A value that corresponds to allowing the TopCount QueryExpression property. |
All | 31 | A value that corresponds to allowing all query options. |