Class ExportQueryResult
Holds the parameters for filtering a set of results down just to those required
Used with the ExportQueryController as a parameter for the popup window IExportQuery
Inheritance
System.Object
ExportQueryResult
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: LemonEdge.Client.Core.Support
Assembly: ClientCore.dll
Syntax
public class ExportQueryResult
Properties
CanvasID
Indicates if the query should run on a specific canvas
Declaration
public Guid? CanvasID { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |
Filter
A list of filters to apply to the result set. COmbined using the FilterGroupBy
Declaration
public IEnumerable<QueryableFilter> Filter { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<QueryableFilter> |
FilterGroupBy
The top level filter composite for all filters in Filter
Declaration
public GroupType FilterGroupBy { get; set; }
Property Value
Type | Description |
---|---|
GroupType |
SupressRowCountOnServer
If true the system will first get the row count total, and then get the data providing more comprehensive progress, however can take longer to execute
This should be false if you are executing long running queries
Declaration
public bool SupressRowCountOnServer { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
UseAsOfDate
Indicates if the query should be run as of any prior point in the past
Declaration
public DateTimeOffset? UseAsOfDate { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTimeOffset> |
VisibleColumns
A list of columns to be included in the result set
Declaration
public IEnumerable<ColumnDescriptor> VisibleColumns { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<ColumnDescriptor> |