Show / Hide Table of Contents

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 Source

ColumnNames

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.

| Improve this Doc View Source

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.

| Improve this Doc View Source

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.

  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX