SqlServerDbFunctionsExtensions.DateDiffYear 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
DateDiffYear(DbFunctions, DateOnly, DateOnly) |
计算 在 和 |
DateDiffYear(DbFunctions, DateTime, DateTime) |
计算 在 和 |
DateDiffYear(DbFunctions, DateTimeOffset, DateTimeOffset) |
计算 在 和 |
DateDiffYear(DbFunctions, Nullable<DateOnly>, Nullable<DateOnly>) |
计算 在 和 |
DateDiffYear(DbFunctions, Nullable<DateTime>, Nullable<DateTime>) |
计算 和 |
DateDiffYear(DbFunctions, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>) |
计算 在 和 |
DateDiffYear(DbFunctions, DateOnly, DateOnly)
计算 在 和 endDate
之间startDate
跨越的年边界数。
对应于 SQL Server 的 DATEDIFF(year, @startDate, @endDate)
。
public static int DateDiffYear (this Microsoft.EntityFrameworkCore.DbFunctions _, DateOnly startDate, DateOnly endDate);
static member DateDiffYear : Microsoft.EntityFrameworkCore.DbFunctions * DateOnly * DateOnly -> int
<Extension()>
Public Function DateDiffYear (_ As DbFunctions, startDate As DateOnly, endDate As DateOnly) As Integer
参数
DbFunctions 实例。
- startDate
- DateOnly
计算的开始日期。
- endDate
- DateOnly
计算的结束日期。
返回
日期之间跨越的年份边界数。
注解
有关详细信息和示例,请参阅数据库函数和使用 EF Core 访问SQL Server和Azure SQL数据库。
适用于
DateDiffYear(DbFunctions, DateTime, DateTime)
计算 在 和 endDate
之间startDate
跨越的年边界数。
对应于 SQL Server 的 DATEDIFF(year, @startDate, @endDate)
。
public static int DateDiffYear (this Microsoft.EntityFrameworkCore.DbFunctions _, DateTime startDate, DateTime endDate);
static member DateDiffYear : Microsoft.EntityFrameworkCore.DbFunctions * DateTime * DateTime -> int
<Extension()>
Public Function DateDiffYear (_ As DbFunctions, startDate As DateTime, endDate As DateTime) As Integer
参数
DbFunctions 实例。
- startDate
- DateTime
计算的开始日期。
- endDate
- DateTime
计算的结束日期。
返回
日期之间跨越的年份边界数。
注解
有关详细信息和示例,请参阅数据库函数和使用 EF Core 访问SQL Server和Azure SQL数据库。
适用于
DateDiffYear(DbFunctions, DateTimeOffset, DateTimeOffset)
计算 在 和 endDate
之间startDate
跨越的年边界数。
对应于 SQL Server 的 DATEDIFF(year, @startDate, @endDate)
。
public static int DateDiffYear (this Microsoft.EntityFrameworkCore.DbFunctions _, DateTimeOffset startDate, DateTimeOffset endDate);
static member DateDiffYear : Microsoft.EntityFrameworkCore.DbFunctions * DateTimeOffset * DateTimeOffset -> int
<Extension()>
Public Function DateDiffYear (_ As DbFunctions, startDate As DateTimeOffset, endDate As DateTimeOffset) As Integer
参数
DbFunctions 实例。
- startDate
- DateTimeOffset
计算的开始日期。
- endDate
- DateTimeOffset
计算的结束日期。
返回
日期之间跨越的年份边界数。
注解
有关详细信息和示例,请参阅数据库函数和使用 EF Core 访问SQL Server和Azure SQL数据库。
适用于
DateDiffYear(DbFunctions, Nullable<DateOnly>, Nullable<DateOnly>)
计算 在 和 endDate
之间startDate
跨越的年边界数。
对应于 SQL Server 的 DATEDIFF(year, @startDate, @endDate)
。
public static int? DateDiffYear (this Microsoft.EntityFrameworkCore.DbFunctions _, DateOnly? startDate, DateOnly? endDate);
static member DateDiffYear : Microsoft.EntityFrameworkCore.DbFunctions * Nullable<DateOnly> * Nullable<DateOnly> -> Nullable<int>
<Extension()>
Public Function DateDiffYear (_ As DbFunctions, startDate As Nullable(Of DateOnly), endDate As Nullable(Of DateOnly)) As Nullable(Of Integer)
参数
DbFunctions 实例。
返回
日期之间跨越的年份边界数。
注解
有关详细信息和示例,请参阅数据库函数和使用 EF Core 访问SQL Server和Azure SQL数据库。
适用于
DateDiffYear(DbFunctions, Nullable<DateTime>, Nullable<DateTime>)
计算 和 endDate
之间startDate
交叉的年边界数。
对应于 SQL Server 的 DATEDIFF(year, @startDate, @endDate)
。
public static int? DateDiffYear (this Microsoft.EntityFrameworkCore.DbFunctions _, DateTime? startDate, DateTime? endDate);
static member DateDiffYear : Microsoft.EntityFrameworkCore.DbFunctions * Nullable<DateTime> * Nullable<DateTime> -> Nullable<int>
<Extension()>
Public Function DateDiffYear (_ As DbFunctions, startDate As Nullable(Of DateTime), endDate As Nullable(Of DateTime)) As Nullable(Of Integer)
参数
DbFunctions 实例。
返回
日期之间跨越的年份边界数。
注解
有关详细信息和示例,请参阅数据库函数和使用 EF Core 访问SQL Server和Azure SQL数据库。
适用于
DateDiffYear(DbFunctions, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)
计算 在 和 endDate
之间startDate
跨越的年边界数。
对应于 SQL Server 的 DATEDIFF(year, @startDate, @endDate)
。
public static int? DateDiffYear (this Microsoft.EntityFrameworkCore.DbFunctions _, DateTimeOffset? startDate, DateTimeOffset? endDate);
static member DateDiffYear : Microsoft.EntityFrameworkCore.DbFunctions * Nullable<DateTimeOffset> * Nullable<DateTimeOffset> -> Nullable<int>
<Extension()>
Public Function DateDiffYear (_ As DbFunctions, startDate As Nullable(Of DateTimeOffset), endDate As Nullable(Of DateTimeOffset)) As Nullable(Of Integer)
参数
DbFunctions 实例。
- startDate
- Nullable<DateTimeOffset>
计算的开始日期。
- endDate
- Nullable<DateTimeOffset>
计算的结束日期。
返回
日期之间跨越的年份边界数。
注解
有关详细信息和示例,请参阅数据库函数和使用 EF Core 访问SQL Server和Azure SQL数据库。