EdmFunctions.CreateTime(DbExpression, DbExpression, DbExpression) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定された引数で正規の 'CreateTime' 関数を呼び出す DbFunctionExpression を作成します。 second
結果の型は Edm.Double である必要があり、他のすべての引数の結果の型は Edm.Int32 である必要があります。 式の結果型は Edm.Time です。
public:
static System::Data::Common::CommandTrees::DbFunctionExpression ^ CreateTime(System::Data::Common::CommandTrees::DbExpression ^ hour, System::Data::Common::CommandTrees::DbExpression ^ minute, System::Data::Common::CommandTrees::DbExpression ^ second);
public static System.Data.Common.CommandTrees.DbFunctionExpression CreateTime (System.Data.Common.CommandTrees.DbExpression hour, System.Data.Common.CommandTrees.DbExpression minute, System.Data.Common.CommandTrees.DbExpression second);
static member CreateTime : System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbFunctionExpression
Public Function CreateTime (hour As DbExpression, minute As DbExpression, second As DbExpression) As DbFunctionExpression
パラメーター
- hour
- DbExpression
新しい DateTime インスタンスの時値を表す式。
- minute
- DbExpression
新しい DateTime インスタンスの分値を表す式。
- second
- DbExpression
新しい DateTime インスタンスの秒値を表す式。
戻り値
指定された値に基づいて新しい Time を返す新しい DbFunctionExpression。
例外
hour
、minute
、または second
が null
です。
hour
、 minute
、または second
が無効です。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET