共用方式為


EdmFunctions.CreateDateTimeOffset 方法

定義

建立會使用指定的引數叫用標準 'CreateDateTimeOffset' 函式的 DbFunctionExpressionsecond 必須具有 Edm.Double 的結果類型,而所有其他自變數都必須有 Edm.Int32 的結果類型。 運算式的結果型別為 Edm.DateTimeOffset。

public:
 static System::Data::Common::CommandTrees::DbFunctionExpression ^ CreateDateTimeOffset(System::Data::Common::CommandTrees::DbExpression ^ year, System::Data::Common::CommandTrees::DbExpression ^ month, System::Data::Common::CommandTrees::DbExpression ^ day, System::Data::Common::CommandTrees::DbExpression ^ hour, System::Data::Common::CommandTrees::DbExpression ^ minute, System::Data::Common::CommandTrees::DbExpression ^ second, System::Data::Common::CommandTrees::DbExpression ^ timeZoneOffset);
public static System.Data.Common.CommandTrees.DbFunctionExpression CreateDateTimeOffset (System.Data.Common.CommandTrees.DbExpression year, System.Data.Common.CommandTrees.DbExpression month, System.Data.Common.CommandTrees.DbExpression day, System.Data.Common.CommandTrees.DbExpression hour, System.Data.Common.CommandTrees.DbExpression minute, System.Data.Common.CommandTrees.DbExpression second, System.Data.Common.CommandTrees.DbExpression timeZoneOffset);
static member CreateDateTimeOffset : System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression * System.Data.Common.CommandTrees.DbExpression -> System.Data.Common.CommandTrees.DbFunctionExpression
Public Function CreateDateTimeOffset (year As DbExpression, month As DbExpression, day As DbExpression, hour As DbExpression, minute As DbExpression, second As DbExpression, timeZoneOffset As DbExpression) As DbFunctionExpression

參數

year
DbExpression

運算式,提供新 DateTimeOffset 執行個體的年份值。

month
DbExpression

運算式,提供新 DateTimeOffset 執行個體的月份值。

day
DbExpression

運算式,提供新 DateTimeOffset 執行個體的日期值。

hour
DbExpression

運算式,提供新 DateTimeOffset 執行個體的小時值。

minute
DbExpression

運算式,提供新 DateTimeOffset 執行個體的分鐘值。

second
DbExpression

運算式,提供新 DateTimeOffset 執行個體的秒鐘值。

timeZoneOffset
DbExpression

運算式,提供新 DateTimeOffset 執行個體在時區位移值中的分鐘數。

傳回

根據指定值傳回新 DateTimeOffset 的新 DbFunctionExpression。

例外狀況

yearmonthdayhourminutesecondtimeZoneOffsetnull

yearmonthdayhourminutesecondtimeZoneOffset 無效。

適用於