Class RequestOptions
Configures cache behavior and execution priority for entity queries.
public class RequestOptions
- Inheritance
-
RequestOptions
- Inherited Members
Fields
Default
The default request options.
public static readonly RequestOptions Default
Field Value
Properties
Priority
The priority level to be used when the query must execute against the database. Determines execution order when multiple uncached queries are pending. Default value is Default.
public RequestPriority Priority { get; set; }
Property Value
Requirements
Specifies the minimum acceptable cache state for query results. Determines whether cached data can be returned and whether to wait for fresh data. Default value is Stale.
public ResultState Requirements { get; set; }