SqlServerDbFunctionsExtensions.TimeFromParts 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将 结构的新实例 TimeSpan 初始化为指定的小时、分钟、秒、分数和精度。 对应于 SQL Server 的 TIMEFROMPARTS(hour, minute, seconds, fractions, precision)
。
public static TimeSpan TimeFromParts (this Microsoft.EntityFrameworkCore.DbFunctions _, int hour, int minute, int second, int fractions, int precision);
static member TimeFromParts : Microsoft.EntityFrameworkCore.DbFunctions * int * int * int * int * int -> TimeSpan
<Extension()>
Public Function TimeFromParts (_ As DbFunctions, hour As Integer, minute As Integer, second As Integer, fractions As Integer, precision As Integer) As TimeSpan
参数
DbFunctions 实例。
- hour
- Int32
小时(0 到 23)。
- minute
- Int32
分(0 到 59)。
- second
- Int32
秒(0 到 59)。
- fractions
- Int32
秒的小数部分 (0 到 9999999) 。
- precision
- Int32
时间值的精度 (0 到 7) 。
返回
结构的新实例 TimeSpan ,达到指定的小时、分钟、秒、分数和精度。
注解
有关详细信息和示例,请参阅数据库函数和使用 EF Core 访问SQL Server和Azure SQL数据库。