EdmFunctions.AddMicroseconds(DbExpression, DbExpression) メソッド

定義

指定された引数で正規の 'AddMicroseconds' 関数を呼び出す DbFunctionExpression を作成します。指定する引数の結果型は DateTime、DateTimeOffset、または Time のいずれかの整数である必要があります。 式の結果の型は、 の結果の型 timeValueと同じです。

public:
[System::Runtime::CompilerServices::Extension]
 static System::Data::Common::CommandTrees::DbFunctionExpression ^ AddMicroseconds(System::Data::Common::CommandTrees::DbExpression ^ timeValue, System::Data::Common::CommandTrees::DbExpression ^ addValue);
public static System.Data.Common.CommandTrees.DbFunctionExpression AddMicroseconds (this System.Data.Common.CommandTrees.DbExpression timeValue, System.Data.Common.CommandTrees.DbExpression addValue);
static member AddMicroseconds : System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbFunctionExpression
<Extension()>
Public Function AddMicroseconds (timeValue As DbExpression, addValue As DbExpression) As DbFunctionExpression

パラメーター

timeValue
DbExpression

追加する値を指定する addValue 式。

addValue
DbExpression

に追加するマイクロ秒数を指定する timeValue式。

戻り値

addValue 指定されたマイクロ秒数を で指定した timeValue値に加算する新しい DbFunctionExpression。

例外

timeValue または addValuenull です。

timeValue または addValue が無効です。

適用対象