Statement MembersAerospike

The Statement type exposes the following members.
Constructors

  NameDescription
Public methodStatement
Initializes a new instance of the Statement class
Back to Top
Methods

  NameDescription
Public methodSetAggregateFunction(String, String,  Value )
Set Lua aggregation function parameters for a Lua package located on the filesystem. This function will be called on both the server and client for each selected item.
Public methodSetAggregateFunction(Assembly, String, String, String,  Value )
Set Lua aggregation function parameters for a Lua package located in an assembly resource. This function will be called on both the server and client for each selected item.
Public methodSetBinNames
Set query bin names.
Public methodSetFilters
Set optional query filters. Currently, only one filter is allowed by the server on a secondary index lookup. If multiple filters are necessary, see QueryFilter example for a workaround. QueryFilter demonstrates how to add additional filters in an user-defined aggregation function.
Public methodSetIndexName
Set optional query index name. If not set, the server will determine the index from the filter's bin name.
Public methodSetNamespace
Set query namespace.
Public methodSetSetName
Set optional query set name.
Public methodSetTaskId
Set optional query task id.
Back to Top
Properties

  NameDescription
Public propertyBinNames
Query bin names.
Public propertyFilters
Optional query filters. Currently, only one filter is allowed by the server on a secondary index lookup. If multiple filters are necessary, see QueryFilter example for a workaround. QueryFilter demonstrates how to add additional filters in an user-defined aggregation function.
Public propertyFunctionArgs
Arguments to pass to function name, if any. Used by aggregate queries only.
Public propertyFunctionName
Aggregation function name. Used by aggregate queries only.
Public propertyIndexName
Optional query index name. If not set, the server will determine the index from the filter's bin name.
Public propertyNamespace
Query namespace.
Public propertyPackageName
Server package where user defined function resides. Used by aggregate queries only.
Public propertyResourceAssembly
Assembly where resource is located. Current assembly can be obtained by: Assembly.GetExecutingAssembly(). Used by aggregate queries only.
Public propertyResourcePath
Namespace path where Lua resource is located. Example: Aerospike.Client.Resources.mypackage.lua Used by aggregate queries only.
Public propertySetName
Optional query set name.
Public propertyTaskId
Optional query task id.
Back to Top
See Also