Class DocumentGetQuery
Запрос на получение документов.
Inheritance
System.Object
DocumentGetQuery
Namespace:InfinniPlatform.DocumentStorage
Assembly:InfinniPlatform.DocumentStorage.HttpService.dll
Syntax
public class DocumentGetQuery : object
Properties
| Improve this Doc View SourceCount
Необходимость подсчета количества.
Declaration
public bool Count { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Filter
Правило фильтрации документов.
Declaration
public Func<IDocumentFilterBuilder, object> Filter { get; set; }
Property Value
Type | Description |
---|---|
Func<IDocumentFilterBuilder, System.Object> |
Order
Правило сортировки документов.
Declaration
public IDictionary<string, DocumentSortOrder> Order { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<System.String, DocumentSortOrder> |
Search
Строка полнотекстового поиска.
Declaration
public string Search { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Select
Правило отображения документов.
Declaration
public Action<IDocumentProjectionBuilder> Select { get; set; }
Property Value
Type | Description |
---|---|
Action<IDocumentProjectionBuilder> |
Skip
Количество документов, которое нужно пропустить.
Declaration
public int Skip { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Take
Максимальное количество документов, которое нужно выбрать.
Declaration
public int Take { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |