SqlServerDbFunctionsExtensions.DateDiffDay 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.
Overloads
DateDiffDay(DbFunctions, Nullable<DateTime>, Nullable<DateTime>) |
Counts the number of day boundaries crossed between the |
DateDiffDay(DbFunctions, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>) |
Counts the number of day boundaries crossed between the |
DateDiffDay(DbFunctions, Nullable<DateOnly>, Nullable<DateOnly>) |
Counts the number of day boundaries crossed between the |
DateDiffDay(DbFunctions, DateTimeOffset, DateTimeOffset) |
Counts the number of day boundaries crossed between the |
DateDiffDay(DbFunctions, DateTime, DateTime) |
Counts the number of day boundaries crossed between the |
DateDiffDay(DbFunctions, DateOnly, DateOnly) |
Counts the number of day boundaries crossed between the |
DateDiffDay(DbFunctions, Nullable<DateTime>, Nullable<DateTime>)
Counts the number of day boundaries crossed between the startDate
and endDate
.
Corresponds to SQL Server's DATEDIFF(day, @startDate, @endDate)
.
public static int? DateDiffDay (this Microsoft.EntityFrameworkCore.DbFunctions _, DateTime? startDate, DateTime? endDate);
static member DateDiffDay : Microsoft.EntityFrameworkCore.DbFunctions * Nullable<DateTime> * Nullable<DateTime> -> Nullable<int>
<Extension()>
Public Function DateDiffDay (_ As DbFunctions, startDate As Nullable(Of DateTime), endDate As Nullable(Of DateTime)) As Nullable(Of Integer)
Parameters
The DbFunctions instance.
Returns
Number of day boundaries crossed between the dates.
Remarks
See Database functions, and Accessing SQL Server and Azure SQL databases with EF Core for more information and examples.
Applies to
DateDiffDay(DbFunctions, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)
Counts the number of day boundaries crossed between the startDate
and endDate
.
Corresponds to SQL Server's DATEDIFF(day, @startDate, @endDate)
.
public static int? DateDiffDay (this Microsoft.EntityFrameworkCore.DbFunctions _, DateTimeOffset? startDate, DateTimeOffset? endDate);
static member DateDiffDay : Microsoft.EntityFrameworkCore.DbFunctions * Nullable<DateTimeOffset> * Nullable<DateTimeOffset> -> Nullable<int>
<Extension()>
Public Function DateDiffDay (_ As DbFunctions, startDate As Nullable(Of DateTimeOffset), endDate As Nullable(Of DateTimeOffset)) As Nullable(Of Integer)
Parameters
The DbFunctions instance.
- startDate
- Nullable<DateTimeOffset>
Starting date for the calculation.
- endDate
- Nullable<DateTimeOffset>
Ending date for the calculation.
Returns
Number of day boundaries crossed between the dates.
Remarks
See Database functions, and Accessing SQL Server and Azure SQL databases with EF Core for more information and examples.
Applies to
DateDiffDay(DbFunctions, Nullable<DateOnly>, Nullable<DateOnly>)
Counts the number of day boundaries crossed between the startDate
and endDate
.
Corresponds to SQL Server's DATEDIFF(day, @startDate, @endDate)
.
public static int? DateDiffDay (this Microsoft.EntityFrameworkCore.DbFunctions _, DateOnly? startDate, DateOnly? endDate);
static member DateDiffDay : Microsoft.EntityFrameworkCore.DbFunctions * Nullable<DateOnly> * Nullable<DateOnly> -> Nullable<int>
<Extension()>
Public Function DateDiffDay (_ As DbFunctions, startDate As Nullable(Of DateOnly), endDate As Nullable(Of DateOnly)) As Nullable(Of Integer)
Parameters
The DbFunctions instance.
Returns
Number of day boundaries crossed between the dates.
Remarks
See Database functions, and Accessing SQL Server and Azure SQL databases with EF Core for more information and examples.
Applies to
DateDiffDay(DbFunctions, DateTimeOffset, DateTimeOffset)
Counts the number of day boundaries crossed between the startDate
and endDate
.
Corresponds to SQL Server's DATEDIFF(day, @startDate, @endDate)
.
public static int DateDiffDay (this Microsoft.EntityFrameworkCore.DbFunctions _, DateTimeOffset startDate, DateTimeOffset endDate);
static member DateDiffDay : Microsoft.EntityFrameworkCore.DbFunctions * DateTimeOffset * DateTimeOffset -> int
<Extension()>
Public Function DateDiffDay (_ As DbFunctions, startDate As DateTimeOffset, endDate As DateTimeOffset) As Integer
Parameters
The DbFunctions instance.
- startDate
- DateTimeOffset
Starting date for the calculation.
- endDate
- DateTimeOffset
Ending date for the calculation.
Returns
Number of day boundaries crossed between the dates.
Remarks
See Database functions, and Accessing SQL Server and Azure SQL databases with EF Core for more information and examples.
Applies to
DateDiffDay(DbFunctions, DateTime, DateTime)
Counts the number of day boundaries crossed between the startDate
and endDate
.
Corresponds to SQL Server's DATEDIFF(day, @startDate, @endDate)
.
public static int DateDiffDay (this Microsoft.EntityFrameworkCore.DbFunctions _, DateTime startDate, DateTime endDate);
static member DateDiffDay : Microsoft.EntityFrameworkCore.DbFunctions * DateTime * DateTime -> int
<Extension()>
Public Function DateDiffDay (_ As DbFunctions, startDate As DateTime, endDate As DateTime) As Integer
Parameters
The DbFunctions instance.
- startDate
- DateTime
Starting date for the calculation.
- endDate
- DateTime
Ending date for the calculation.
Returns
Number of day boundaries crossed between the dates.
Remarks
See Database functions, and Accessing SQL Server and Azure SQL databases with EF Core for more information and examples.
Applies to
DateDiffDay(DbFunctions, DateOnly, DateOnly)
Counts the number of day boundaries crossed between the startDate
and endDate
.
Corresponds to SQL Server's DATEDIFF(day, @startDate, @endDate)
.
public static int DateDiffDay (this Microsoft.EntityFrameworkCore.DbFunctions _, DateOnly startDate, DateOnly endDate);
static member DateDiffDay : Microsoft.EntityFrameworkCore.DbFunctions * DateOnly * DateOnly -> int
<Extension()>
Public Function DateDiffDay (_ As DbFunctions, startDate As DateOnly, endDate As DateOnly) As Integer
Parameters
The DbFunctions instance.
- startDate
- DateOnly
Starting date for the calculation.
- endDate
- DateOnly
Ending date for the calculation.
Returns
Number of day boundaries crossed between the dates.
Remarks
See Database functions, and Accessing SQL Server and Azure SQL databases with EF Core for more information and examples.
Applies to
Entity Framework