共用方式為


EdmFunctions.Power(DbExpression, DbExpression) 方法

定義

建立會使用指定引數叫用標準 'Power' 函式的 DbFunctionExpression,其中的引數必須具有數值結果型別。 運算式的結果類型與 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

參數

baseArgument
DbExpression

運算式,指定要以所指定乘冪數自乘的數值。

exponent
DbExpression

運算式,指定應該引發 baseArgument 的乘冪。

傳回

新的 DbFunctionExpression,會傳回以指數所指定乘冪的 baseArgument 值。

適用於