Skip to main content

StreamDataQueryOptions

Namespace: Meshmakers.Octo.Runtime.Contracts.StreamData

Options for a simple stream data query. Use StreamDataQueryOptions.Create() to start building.

public class StreamDataQueryOptions : StreamDataQueryOptionsBase

Inheritance ObjectStreamDataQueryOptionsBaseStreamDataQueryOptions

Properties

CkTypeId

public RtCkId<CkTypeId> CkTypeId { get; protected set; }

Property Value

RtCkId<CkTypeId>

Columns

public IReadOnlyList<string> Columns { get; protected set; }

Property Value

IReadOnlyList<String>

RtIds

public IReadOnlyList<OctoObjectId> RtIds { get; protected set; }

Property Value

IReadOnlyList<OctoObjectId>

From

public Nullable<DateTime> From { get; protected set; }

Property Value

Nullable<DateTime>

To

public Nullable<DateTime> To { get; protected set; }

Property Value

Nullable<DateTime>

Limit

public Nullable<int> Limit { get; protected set; }

Property Value

Nullable<Int32>

SortOrders

public IReadOnlyList<SortOrderItem> SortOrders { get; protected set; }

Property Value

IReadOnlyList<SortOrderItem>

FieldFilters

public IReadOnlyList<FieldFilter> FieldFilters { get; protected set; }

Property Value

IReadOnlyList<FieldFilter>

Offset

public Nullable<int> Offset { get; protected set; }

Property Value

Nullable<Int32>

PageSize

public Nullable<int> PageSize { get; protected set; }

Property Value

Nullable<Int32>

Constructors

StreamDataQueryOptions()

public StreamDataQueryOptions()

Methods

Create()

public static StreamDataQueryOptions Create()

Returns

StreamDataQueryOptions

WithCkTypeId(RtCkId<CkTypeId>)

public StreamDataQueryOptions WithCkTypeId(RtCkId<CkTypeId> id)

Parameters

id RtCkId<CkTypeId>

Returns

StreamDataQueryOptions

WithColumns(IReadOnlyList<String>)

public StreamDataQueryOptions WithColumns(IReadOnlyList<string> columns)

Parameters

columns IReadOnlyList<String>

Returns

StreamDataQueryOptions

WithRtIds(IReadOnlyList<OctoObjectId>)

public StreamDataQueryOptions WithRtIds(IReadOnlyList<OctoObjectId> ids)

Parameters

ids IReadOnlyList<OctoObjectId>

Returns

StreamDataQueryOptions

WithTimeRange(Nullable<DateTime>, Nullable<DateTime>)

public StreamDataQueryOptions WithTimeRange(Nullable<DateTime> from, Nullable<DateTime> to)

Parameters

from Nullable<DateTime>

to Nullable<DateTime>

Returns

StreamDataQueryOptions

WithLimit(Nullable<Int32>)

public StreamDataQueryOptions WithLimit(Nullable<int> limit)

Parameters

limit Nullable<Int32>

Returns

StreamDataQueryOptions

WithSortOrders(IReadOnlyList<SortOrderItem>)

public StreamDataQueryOptions WithSortOrders(IReadOnlyList<SortOrderItem> sortOrders)

Parameters

sortOrders IReadOnlyList<SortOrderItem>

Returns

StreamDataQueryOptions

WithFieldFilters(IReadOnlyList<FieldFilter>)

public StreamDataQueryOptions WithFieldFilters(IReadOnlyList<FieldFilter> fieldFilters)

Parameters

fieldFilters IReadOnlyList<FieldFilter>

Returns

StreamDataQueryOptions

WithPagination(Nullable<Int32>, Nullable<Int32>)

public StreamDataQueryOptions WithPagination(Nullable<int> offset, Nullable<int> pageSize)

Parameters

offset Nullable<Int32>

pageSize Nullable<Int32>

Returns

StreamDataQueryOptions