SqlServerDbFunctionsExtensions.DateTimeFromParts Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the DateTime structure to the specified year, month, day, hour, minute, second,
and millisecond.
Corresponds to SQL Server's 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
Parameters
The DbFunctions instance.
- year
- Int32
The year (1753 through 9999).
- month
- Int32
The month (1 through 12).
- day
- Int32
The day (1 through the number of days in month).
- hour
- Int32
The hours (0 through 23).
- minute
- Int32
The minutes (0 through 59).
- second
- Int32
The seconds (0 through 59).
- millisecond
- Int32
The milliseconds (0 through 999).
Returns
New instance of the DateTime structure to the specified year, month, day, hour, minute, second, and millisecond.
Remarks
See Database functions, and Accessing SQL Server and Azure SQL databases with EF Core for more information and examples.
Applies to
Entity Framework