Show / Hide Table of Contents

Class AggregateOperator

Represents an aggregate operator that can be applied over a query field.

Inheritance
object
AggregateOperator
Namespace: TileDB.CSharp
Assembly: TileDB.CSharp.dll
Syntax
public abstract class AggregateOperator
Remarks

This class abstracts the tiledb_channel_operator_t type of the TileDB C API.

Properties

| Edit this page View Source

Max

Computes the maximum value in the field.

Declaration
public static AggregateOperator Max { get; }
Property Value
Type Description
AggregateOperator
| Edit this page View Source

Mean

Computes the mean of all values in the field.

Declaration
public static AggregateOperator Mean { get; }
Property Value
Type Description
AggregateOperator
| Edit this page View Source

Min

Computes the minimum value in the field.

Declaration
public static AggregateOperator Min { get; }
Property Value
Type Description
AggregateOperator
| Edit this page View Source

NullCount

Counts the number of null values in the field.

Declaration
public static AggregateOperator NullCount { get; }
Property Value
Type Description
AggregateOperator
| Edit this page View Source

Sum

Computes the sum of all values in the field.

Declaration
public static AggregateOperator Sum { get; }
Property Value
Type Description
AggregateOperator
  • Edit this page
  • View Source
In this article
Back to top Copyright © 2018-2023 TileDB Inc.