Show / Hide Table of Contents

Interface IQueryRequest

Represents the generic query request.

Namespace: Relativity.Testing.Framework.Api.Querying
Assembly: Relativity.Testing.Framework.Api.dll
Syntax
public interface IQueryRequest

Methods

| Improve this Doc View Source

AddCondition(String)

Adds the condition.

Declaration
void AddCondition(string rowCondition)
Parameters
Type Name Description
System.String rowCondition

The row condition.

| Improve this Doc View Source

AddCondition(String, Object)

Adds the condition.

Declaration
void AddCondition(string fieldName, object fieldValue)
Parameters
Type Name Description
System.String fieldName

Name of the field.

System.Object fieldValue

The field value.

| Improve this Doc View Source

SetFieldsToFetch(IEnumerable<String>)

Sets the fields to fetch.

Declaration
void SetFieldsToFetch(IEnumerable<string> fieldNames)
Parameters
Type Name Description
System.Collections.Generic.IEnumerable<System.String> fieldNames

The field names.

| Improve this Doc View Source

SetLength(Int32)

Specifies the number of items to return in the query result.

Declaration
void SetLength(int length)
Parameters
Type Name Description
System.Int32 length

The number of items to return in the query result, starting with index in the start parameter.

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