SqlServerDbFunctionsExtensions.DateTimeOffsetFromParts 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将 结构的新实例 DateTimeOffset 初始化为指定的年、月、日、小时、分钟、秒、分数、hourOffset、minuteOffset 和精度。
对应于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 和精度。
注解
有关详细信息和示例,请参阅数据库函数和使用 EF Core 访问SQL Server和Azure SQL数据库。