Class ActionQueryRequest
Describes conditions and sorts to be returned for a Script result query call.
Inheritance
System.Object
ActionQueryRequest
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Relativity.Testing.Framework.Models
Assembly: Relativity.Testing.Framework.dll
Syntax
public class ActionQueryRequest
Properties
| Improve this Doc View SourceColumnNames
Gets or sets the names of the columns to include in the results.
Declaration
public List<string> ColumnNames { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.String> | The column names. |
Condition
Gets or sets the search criteria. It can be a simple, single-field condition or a complex expression made by combining conditions.
Declaration
public string Condition { get; set; }
Property Value
Type | Description |
---|---|
System.String | The condition. |
Sorts
Gets or sets the sort order for view results specified as a collection of Sort objects. See ActionColumnSort.
Declaration
public List<ActionColumnSort> Sorts { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<ActionColumnSort> | The sorts. |