SqlServerDbFunctionsExtensions.DateTimeFromParts 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将 DateTime 结构的新实例初始化为指定的年、月、日、小时、分钟、秒和毫秒。
对应于 SQL Server 的 DATETIMEFROMPARTS(year, month, day, hour, minute, second, millisecond)
。
public static DateTime DateTimeFromParts (this Microsoft.EntityFrameworkCore.DbFunctions _, int year, int month, int day, int hour, int minute, int second, int millisecond);
static member DateTimeFromParts : Microsoft.EntityFrameworkCore.DbFunctions * int * int * int * int * int * int * int -> DateTime
<Extension()>
Public Function DateTimeFromParts (_ As DbFunctions, year As Integer, month As Integer, day As Integer, hour As Integer, minute As Integer, second As Integer, millisecond As Integer) As DateTime
参数
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)。
- millisecond
- Int32
毫秒(0 到 999)。
返回
结构的新实例 DateTime 为指定的年、月、日、小时、分钟、秒和毫秒。
注解
有关详细信息和示例,请参阅数据库函数和使用 EF Core 访问SQL Server和Azure SQL数据库。