SqlServerDbFunctionsExtensions.DateTimeOffsetFromParts 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將 結構的新實例 DateTimeOffset 初始化為指定的年份、月、日、小時、分鐘、秒、分數、hourOffset、minuteOffset 和 precision。
對應至SQL Server
DATETIMEOFFSETFROMPARTS(year, month, day, hour, minute, seconds, fractions, hour_offset,
minute_offset, precision)
.
public static DateTimeOffset DateTimeOffsetFromParts (this Microsoft.EntityFrameworkCore.DbFunctions _, int year, int month, int day, int hour, int minute, int second, int fractions, int hourOffset, int minuteOffset, int precision);
static member DateTimeOffsetFromParts : Microsoft.EntityFrameworkCore.DbFunctions * int * int * int * int * int * int * int * int * int * int -> DateTimeOffset
<Extension()>
Public Function DateTimeOffsetFromParts (_ As DbFunctions, year As Integer, month As Integer, day As Integer, hour As Integer, minute As Integer, second As Integer, fractions As Integer, hourOffset As Integer, minuteOffset As Integer, precision As Integer) As DateTimeOffset
參數
DbFunctions 執行個體。
- year
- Int32
年 (1753 到 9999) 。
- month
- Int32
月份 (1 到 12)。
- day
- Int32
日 (1 到 month 中的天數)。
- hour
- Int32
小時 (0 到 23)。
- minute
- Int32
分鐘 (0 到 59)。
- second
- Int32
秒數 (0 到 59)。
- fractions
- Int32
小數秒 (0 到 9999999) 。
- hourOffset
- Int32
時區的小時部分 (-14 到 +14) 。
- minuteOffset
- Int32
時區位移的分鐘部分 (0 或 30) 。
- precision
- Int32
datetimeoffset 值的有效位數 (0 到 7) 。
傳回
結構的新實例 DateTimeOffset 到指定的年份、月、日、小時、分鐘、秒、分數、hourOffset、minuteOffset 和 precision。
備註
如需詳細資訊和範例,請參閱使用EF Core 存取SQL Server和Azure SQL資料庫。