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 데이터베이스 액세스를 참조하세요.
적용 대상
Entity Framework