EdmFunctions.Power(DbExpression, DbExpression) Method

Definition

Creates a DbFunctionExpression that invokes the canonical 'Power' function with the specified arguments, which must have numeric result types. The result type of the expression is the same as the result type of baseArgument.

public static System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression Power (this System.Data.Entity.Core.Common.CommandTrees.DbExpression baseArgument, System.Data.Entity.Core.Common.CommandTrees.DbExpression exponent);
static member Power : System.Data.Entity.Core.Common.CommandTrees.DbExpression * System.Data.Entity.Core.Common.CommandTrees.DbExpression -> System.Data.Entity.Core.Common.CommandTrees.DbFunctionExpression
<Extension()>
Public Function Power (baseArgument As DbExpression, exponent As DbExpression) As DbFunctionExpression

Parameters

baseArgument
DbExpression

An expression that specifies the numeric value to raise to the given power.

exponent
DbExpression

An expression that specifies the power to which baseArgument should be raised.

Returns

A new DbFunctionExpression that returns the value of baseArgument raised to the power specified by exponent.

Applies to