SqlServerDbFunctionsExtensions.DateDiffWeek 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
DateDiffWeek(DbFunctions, DateTimeOffset, DateTimeOffset) |
計算 在 和 |
DateDiffWeek(DbFunctions, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>) |
計算 在 和 |
DateDiffWeek(DbFunctions, Nullable<DateTime>, Nullable<DateTime>) |
計算 在 和 |
DateDiffWeek(DbFunctions, DateTime, DateTime) |
計算 在 和 |
DateDiffWeek(DbFunctions, DateOnly, DateOnly) |
計算 在 和 |
DateDiffWeek(DbFunctions, Nullable<DateOnly>, Nullable<DateOnly>) |
計算 在 和 |
DateDiffWeek(DbFunctions, DateTimeOffset, DateTimeOffset)
計算 在 和 endDate
之間 startDate
交叉的周界限數目。
對應至 SQL Server 的 DATEDIFF(week, @startDate, @endDate)
。
public static int DateDiffWeek (this Microsoft.EntityFrameworkCore.DbFunctions _, DateTimeOffset startDate, DateTimeOffset endDate);
static member DateDiffWeek : Microsoft.EntityFrameworkCore.DbFunctions * DateTimeOffset * DateTimeOffset -> int
<Extension()>
Public Function DateDiffWeek (_ As DbFunctions, startDate As DateTimeOffset, endDate As DateTimeOffset) As Integer
參數
DbFunctions 執行個體。
- startDate
- DateTimeOffset
計算的開始日期。
- endDate
- DateTimeOffset
計算的結束日期。
傳回
日期之間的周界限數目。
備註
如需詳細資訊和範例,請參閱使用 EF Core 存取SQL Server和Azure SQL資料庫。
適用於
DateDiffWeek(DbFunctions, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)
計算 在 和 endDate
之間 startDate
交叉的周界限數目。
對應至 SQL Server 的 DATEDIFF(week, @startDate, @endDate)
。
public static int? DateDiffWeek (this Microsoft.EntityFrameworkCore.DbFunctions _, DateTimeOffset? startDate, DateTimeOffset? endDate);
static member DateDiffWeek : Microsoft.EntityFrameworkCore.DbFunctions * Nullable<DateTimeOffset> * Nullable<DateTimeOffset> -> Nullable<int>
<Extension()>
Public Function DateDiffWeek (_ 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資料庫。
適用於
DateDiffWeek(DbFunctions, Nullable<DateTime>, Nullable<DateTime>)
計算 在 和 endDate
之間 startDate
交叉的周界限數目。
對應至 SQL Server 的 DATEDIFF(week, @startDate, @endDate)
。
public static int? DateDiffWeek (this Microsoft.EntityFrameworkCore.DbFunctions _, DateTime? startDate, DateTime? endDate);
static member DateDiffWeek : Microsoft.EntityFrameworkCore.DbFunctions * Nullable<DateTime> * Nullable<DateTime> -> Nullable<int>
<Extension()>
Public Function DateDiffWeek (_ As DbFunctions, startDate As Nullable(Of DateTime), endDate As Nullable(Of DateTime)) As Nullable(Of Integer)
參數
DbFunctions 執行個體。
傳回
日期之間的周界限數目。
備註
如需詳細資訊和範例,請參閱使用 EF Core 存取SQL Server和Azure SQL資料庫。
適用於
DateDiffWeek(DbFunctions, DateTime, DateTime)
計算 在 和 endDate
之間 startDate
交叉的周界限數目。
對應至 SQL Server 的 DATEDIFF(week, @startDate, @endDate)
。
public static int DateDiffWeek (this Microsoft.EntityFrameworkCore.DbFunctions _, DateTime startDate, DateTime endDate);
static member DateDiffWeek : Microsoft.EntityFrameworkCore.DbFunctions * DateTime * DateTime -> int
<Extension()>
Public Function DateDiffWeek (_ As DbFunctions, startDate As DateTime, endDate As DateTime) As Integer
參數
DbFunctions 執行個體。
- startDate
- DateTime
計算的開始日期。
- endDate
- DateTime
計算的結束日期。
傳回
日期之間的周界限數目。
備註
如需詳細資訊和範例,請參閱使用 EF Core 存取SQL Server和Azure SQL資料庫。
適用於
DateDiffWeek(DbFunctions, DateOnly, DateOnly)
計算 在 和 endDate
之間 startDate
交叉的周界限數目。
對應至 SQL Server 的 DATEDIFF(week, @startDate, @endDate)
。
public static int DateDiffWeek (this Microsoft.EntityFrameworkCore.DbFunctions _, DateOnly startDate, DateOnly endDate);
static member DateDiffWeek : Microsoft.EntityFrameworkCore.DbFunctions * DateOnly * DateOnly -> int
<Extension()>
Public Function DateDiffWeek (_ As DbFunctions, startDate As DateOnly, endDate As DateOnly) As Integer
參數
DbFunctions 執行個體。
- startDate
- DateOnly
計算的開始日期。
- endDate
- DateOnly
計算的結束日期。
傳回
日期之間的周界限數目。
備註
如需詳細資訊和範例,請參閱使用 EF Core 存取SQL Server和Azure SQL資料庫。
適用於
DateDiffWeek(DbFunctions, Nullable<DateOnly>, Nullable<DateOnly>)
計算 在 和 endDate
之間 startDate
交叉的周界限數目。
對應至 SQL Server 的 DATEDIFF(week, @startDate, @endDate)
。
public static int? DateDiffWeek (this Microsoft.EntityFrameworkCore.DbFunctions _, DateOnly? startDate, DateOnly? endDate);
static member DateDiffWeek : Microsoft.EntityFrameworkCore.DbFunctions * Nullable<DateOnly> * Nullable<DateOnly> -> Nullable<int>
<Extension()>
Public Function DateDiffWeek (_ As DbFunctions, startDate As Nullable(Of DateOnly), endDate As Nullable(Of DateOnly)) As Nullable(Of Integer)
參數
DbFunctions 執行個體。
傳回
日期之間的周界限數目。
備註
如需詳細資訊和範例,請參閱使用 EF Core 存取SQL Server和Azure SQL資料庫。