Interface IQueryExecutor<TObject>
Represents an executor of object query.
Namespace: Relativity.Testing.Framework.Api.Querying
Assembly: Relativity.Testing.Framework.Api.dll
Syntax
public interface IQueryExecutor<TObject>
Type Parameters
Name | Description |
---|---|
TObject | The type of the object. |
Methods
| Improve this Doc View SourceExecute(IQueryRequest)
Executes the specified request and returns the query result objects.
Declaration
IEnumerable<TObject> Execute(IQueryRequest request)
Parameters
Type | Name | Description |
---|---|---|
IQueryRequest | request | The request. |
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<TObject> | The collection of |