次の方法で共有


SqlFunctions.Square メソッド

定義

オーバーロード

Square(Nullable<Decimal>)

指定された数値の 2 乗を返します。

Square(Nullable<Double>)

指定された数値の 2 乗を返します。

Square(Nullable<Decimal>)

指定された数値の 2 乗を返します。

[System.Data.Entity.DbFunction("SqlServer", "SQUARE")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="arg1")]
public static Nullable<double> Square(Nullable<decimal> arg1);
static member Square : Nullable<decimal> -> Nullable<double>
Public Shared Function Square (arg1 As Nullable(Of Decimal)) As Nullable(Of Double)

パラメーター

arg1
Nullable<Decimal>

任意の数式を指定します。

戻り値

入力された値の 2 乗。

属性

適用対象

Square(Nullable<Double>)

指定された数値の 2 乗を返します。

[System.Data.Entity.DbFunction("SqlServer", "SQUARE")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA1801:ReviewUnusedParameters", MessageId="arg1")]
public static Nullable<double> Square(Nullable<double> arg1);
static member Square : Nullable<double> -> Nullable<double>
Public Shared Function Square (arg1 As Nullable(Of Double)) As Nullable(Of Double)

パラメーター

arg1
Nullable<Double>

任意の数式を指定します。

戻り値

入力された値の 2 乗。

属性

適用対象