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 SourceAddCondition(String)
Adds the condition.
Declaration
void AddCondition(string rowCondition)
Parameters
Type | Name | Description |
---|---|---|
System.String | rowCondition | The row condition. |
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. |
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. |
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. |