Click or drag to resize

FunctionPower Method

Creates a function that will raise the given numeric expression to an expression that determines the exponent

Namespace:  Couchbase.Lite.Query
Assembly:  Couchbase.Lite (in Couchbase.Lite.dll) Version: 2.0.0-b0520
Syntax
C#
public static IExpression Power(
	IExpression b,
	IExpression exponent
)

Parameters

b
Type: Couchbase.Lite.QueryIExpression
A numeric literal or expression that provides the base
exponent
Type: Couchbase.Lite.QueryIExpression
A numeric literal or expression that provides the exponent

Return Value

Type: IExpression
A function that will raise the base to the given exponent
See Also