Class AggregateOperation
Represents an aggregate operation.
Namespace: TileDB.CSharp
Assembly: TileDB.CSharp.dll
Syntax
public abstract class AggregateOperation
Remarks
This class abstracts the tiledb_channel_operation_t type of the TileDB C API.
Properties
| Edit this page View SourceCount
An AggregateOperation returning the number of values in the channel.
Declaration
public static AggregateOperation Count { get; }
Property Value
| Type | Description |
|---|---|
| AggregateOperation |
Methods
| Edit this page View SourceUnary(AggregateOperator, string)
Creates a unary aggregate operation.
Declaration
public static AggregateOperation Unary(AggregateOperator op, string fieldName)
Parameters
| Type | Name | Description |
|---|---|---|
| AggregateOperator | op | The AggregateOperator to apply. |
| string | fieldName | The name of the field to apply the operator to. |
Returns
| Type | Description |
|---|---|
| AggregateOperation |