다음을 통해 공유


DbFunctions 클래스

정의

LINQ to Entities 쿼리에서 사용될 때 데이터베이스 함수로 변환되는 CLR 메서드를 제공합니다. 이 클래스의 메서드는 를 통해 Functions액세스됩니다.

public class DbFunctions
public sealed class DbFunctions
type DbFunctions = class
Public Class DbFunctions
Public NotInheritable Class DbFunctions
상속
DbFunctions

설명

자세한 내용 및 예제는 데이터베이스 함수 를 참조하세요.

확장 메서드

Like(DbFunctions, String, String)

SQL LIKE 작업의 구현입니다. 관계형 데이터베이스에서는 일반적으로 SQL로 직접 변환됩니다.

Like(DbFunctions, String, String, String)

SQL LIKE 작업의 구현입니다. 관계형 데이터베이스에서는 일반적으로 SQL로 직접 변환됩니다.

Random(DbFunctions)

배타적인 0에서 1 사이의 숫자를 생성하는 난수 생성기입니다.

Collate<TProperty>(DbFunctions, TProperty, String)

LINQ 쿼리에 사용할 데이터 정렬을 명시적으로 지정합니다. 와 같은 WHERE customer.name COLLATE 'de_DE' = 'John Doe'조각을 생성하는 데 사용할 수 있습니다.

Glob(DbFunctions, String, String)

SQLite glob 함수와 비슷하 Like(DbFunctions, String, String) 지만 대신 파일 시스템 globbing 구문을 사용하는 에 매핑됩니다.

Hex(DbFunctions, Byte[])

지정된 값을 나타내는 16진수 문자열을 반환하는 SQLite hex 함수에 매핑됩니다.

Substr(DbFunctions, Byte[], Int32)

지정된 값의 하위 배열을 반환하는 SQLite substr 함수에 매핑됩니다. 하위 배열은 에서 startIndex 시작하여 값의 끝까지 계속됩니다.

Substr(DbFunctions, Byte[], Int32, Int32)

지정된 값의 하위 배열을 반환하는 SQLite 하위 문자열 함수에 매핑됩니다. 하위 배열은 에서 startIndex 시작되고 지정된 length가 있습니다.

Unhex(DbFunctions, String)

16진수 문자열의 디코딩을 나타내는 BLOB을 반환하는 SQLite unhex 함수에 매핑됩니다.

Unhex(DbFunctions, String, String)

16진수 문자열의 디코딩을 나타내는 BLOB을 반환하는 SQLite unhex 함수에 매핑됩니다.

AtTimeZone(DbFunctions, DateTime, String)

dateTime 대상 timeZone의 해당 datetimeoffset 로 변환합니다. SQL Server AT TIME ZONE 구문에 해당합니다.

AtTimeZone(DbFunctions, DateTimeOffset, String)

에서 dateTimeOffset 지정한 표준 시간대로 timeZone변환합니다. SQL Server AT TIME ZONE 구문에 해당합니다.

Contains(DbFunctions, Object, String)

LINQ 쿼리에서 SQL Server CONTAINS 저장소 함수를 대상으로 하는 데 사용할 수 있는 DbFunction 메서드 스텁입니다.

Contains(DbFunctions, Object, String, Int32)

LINQ 쿼리에서 SQL Server CONTAINS 저장소 함수를 대상으로 하는 데 사용할 수 있는 DbFunction 메서드 스텁입니다.

Contains(DbFunctions, String, String)

LINQ 쿼리에서 SQL Server CONTAINS 저장소 함수를 대상으로 하는 데 사용할 수 있는 DbFunction 메서드 스텁입니다.

Contains(DbFunctions, String, String, Int32)

LINQ 쿼리에서 SQL Server CONTAINS 저장소 함수를 대상으로 하는 데 사용할 수 있는 DbFunction 메서드 스텁입니다.

DataLength(DbFunctions, Byte[])

식을 표시하는 데 사용되는 바이트 수를 반환합니다.

DataLength(DbFunctions, Nullable<Boolean>)

식을 표시하는 데 사용되는 바이트 수를 반환합니다.

DataLength(DbFunctions, Nullable<DateTime>)

식을 표시하는 데 사용되는 바이트 수를 반환합니다.

DataLength(DbFunctions, Nullable<DateTimeOffset>)

식을 표시하는 데 사용되는 바이트 수를 반환합니다.

DataLength(DbFunctions, Nullable<Decimal>)

식을 표시하는 데 사용되는 바이트 수를 반환합니다.

DataLength(DbFunctions, Nullable<Double>)

식을 표시하는 데 사용되는 바이트 수를 반환합니다.

DataLength(DbFunctions, Nullable<Guid>)

식을 표시하는 데 사용되는 바이트 수를 반환합니다.

DataLength(DbFunctions, Nullable<TimeSpan>)

식을 표시하는 데 사용되는 바이트 수를 반환합니다.

DataLength(DbFunctions, String)

식을 표시하는 데 사용되는 바이트 수를 반환합니다.

DateDiffDay(DbFunctions, DateOnly, DateOnly)

endDate사이에 startDate 교차된 일 경계 수를 계산합니다. SQL Server DATEDIFF(day, @startDate, @endDate)에 해당합니다.

DateDiffDay(DbFunctions, DateTime, DateTime)

endDate사이에 startDate 교차된 일 경계 수를 계산합니다. SQL Server DATEDIFF(day, @startDate, @endDate)에 해당합니다.

DateDiffDay(DbFunctions, DateTimeOffset, DateTimeOffset)

endDate사이에 startDate 교차된 일 경계 수를 계산합니다. SQL Server DATEDIFF(day, @startDate, @endDate)에 해당합니다.

DateDiffDay(DbFunctions, Nullable<DateOnly>, Nullable<DateOnly>)

endDate사이에 startDate 교차된 일 경계 수를 계산합니다. SQL Server DATEDIFF(day, @startDate, @endDate)에 해당합니다.

DateDiffDay(DbFunctions, Nullable<DateTime>, Nullable<DateTime>)

endDate사이에 startDate 교차된 일 경계 수를 계산합니다. SQL Server DATEDIFF(day, @startDate, @endDate)에 해당합니다.

DateDiffDay(DbFunctions, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

endDate사이에 startDate 교차된 일 경계 수를 계산합니다. SQL Server DATEDIFF(day, @startDate, @endDate)에 해당합니다.

DateDiffHour(DbFunctions, DateOnly, DateOnly)

endDate사이에 startDate 교차된 시간 경계 수를 계산합니다. SQL Server DATEDIFF(hour, @startDate, @endDate)에 해당합니다.

DateDiffHour(DbFunctions, DateTime, DateTime)

endDate사이에 startDate 교차된 시간 경계 수를 계산합니다. SQL Server DATEDIFF(hour, @startDate, @endDate)에 해당합니다.

DateDiffHour(DbFunctions, DateTimeOffset, DateTimeOffset)

endDate사이에 startDate 교차된 시간 경계 수를 계산합니다. SQL Server DATEDIFF(hour, @startDate, @endDate)에 해당합니다.

DateDiffHour(DbFunctions, Nullable<DateOnly>, Nullable<DateOnly>)

endDate사이에 startDate 교차된 시간 경계 수를 계산합니다. SQL Server DATEDIFF(hour, @startDate, @endDate)에 해당합니다.

DateDiffHour(DbFunctions, Nullable<DateTime>, Nullable<DateTime>)

endDate사이에 startDate 교차된 시간 경계 수를 계산합니다. SQL Server DATEDIFF(hour, @startDate, @endDate)에 해당합니다.

DateDiffHour(DbFunctions, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

endDate사이에 startDate 교차된 시간 경계 수를 계산합니다. SQL Server DATEDIFF(hour, @startDate, @endDate)에 해당합니다.

DateDiffHour(DbFunctions, Nullable<TimeOnly>, Nullable<TimeOnly>)

endTime사이에 startTime 교차된 시간 경계 수를 계산합니다. SQL Server DATEDIFF(hour, @startTime, @endTime)에 해당합니다.

DateDiffHour(DbFunctions, Nullable<TimeSpan>, Nullable<TimeSpan>)

endTimeSpan사이에 startTimeSpan 교차된 시간 경계 수를 계산합니다. SQL Server DATEDIFF(hour, @startTimeSpan, @endTimeSpan)에 해당합니다.

DateDiffHour(DbFunctions, TimeOnly, TimeOnly)

endTime사이에 startTime 교차된 시간 경계 수를 계산합니다. SQL Server DATEDIFF(hour, @startTime, @endTime)에 해당합니다.

DateDiffHour(DbFunctions, TimeSpan, TimeSpan)

endTimeSpan사이에 startTimeSpan 교차된 시간 경계 수를 계산합니다. SQL Server DATEDIFF(hour, @startTimeSpan, @endTimeSpan)에 해당합니다.

DateDiffMicrosecond(DbFunctions, DateOnly, DateOnly)

endDate사이에 startDate 교차된 마이크로초 경계의 수를 계산합니다. SQL Server DATEDIFF(microsecond, @startDate, @endDate)에 해당합니다.

DateDiffMicrosecond(DbFunctions, DateTime, DateTime)

endDate사이에 startDate 교차된 마이크로초 경계의 수를 계산합니다. SQL Server DATEDIFF(microsecond, @startDate, @endDate)에 해당합니다.

DateDiffMicrosecond(DbFunctions, DateTimeOffset, DateTimeOffset)

endDate사이에 startDate 교차된 마이크로초 경계의 수를 계산합니다. SQL Server DATEDIFF(microsecond, @startDate, @endDate)에 해당합니다.

DateDiffMicrosecond(DbFunctions, Nullable<DateOnly>, Nullable<DateOnly>)

endDate사이에 startDate 교차된 마이크로초 경계의 수를 계산합니다. SQL Server DATEDIFF(microsecond, @startDate, @endDate)에 해당합니다.

DateDiffMicrosecond(DbFunctions, Nullable<DateTime>, Nullable<DateTime>)

endDate사이에 startDate 교차된 마이크로초 경계의 수를 계산합니다. SQL Server DATEDIFF(microsecond, @startDate, @endDate)에 해당합니다.

DateDiffMicrosecond(DbFunctions, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

endDate사이에 startDate 교차된 마이크로초 경계의 수를 계산합니다. SQL Server DATEDIFF(microsecond, @startDate, @endDate)에 해당합니다.

DateDiffMicrosecond(DbFunctions, Nullable<TimeOnly>, Nullable<TimeOnly>)

endTime사이에 startTime 교차된 마이크로초 경계의 수를 계산합니다. SQL Server DATEDIFF(microsecond, @startTime, @endTime)에 해당합니다.

DateDiffMicrosecond(DbFunctions, Nullable<TimeSpan>, Nullable<TimeSpan>)

endTimeSpan사이에 startTimeSpan 교차된 마이크로초 경계의 수를 계산합니다. SQL Server DATEDIFF(microsecond, @startTimeSpan, @endTimeSpan)에 해당합니다.

DateDiffMicrosecond(DbFunctions, TimeOnly, TimeOnly)

endTime사이에 startTime 교차된 마이크로초 경계의 수를 계산합니다. SQL Server DATEDIFF(microsecond, @startTime, @endTime)에 해당합니다.

DateDiffMicrosecond(DbFunctions, TimeSpan, TimeSpan)

endTimeSpan사이에 startTimeSpan 교차된 마이크로초 경계의 수를 계산합니다. SQL Server DATEDIFF(microsecond, @startTimeSpan, @endTimeSpan)에 해당합니다.

DateDiffMillisecond(DbFunctions, DateOnly, DateOnly)

endDate사이에 startDate 교차된 밀리초 경계 수를 계산합니다. SQL Server DATEDIFF(millisecond, @startDate, @endDate)에 해당합니다.

DateDiffMillisecond(DbFunctions, DateTime, DateTime)

endDate사이에 startDate 교차된 밀리초 경계 수를 계산합니다. SQL Server DATEDIFF(millisecond, @startDate, @endDate)에 해당합니다.

DateDiffMillisecond(DbFunctions, DateTimeOffset, DateTimeOffset)

endDate사이에 startDate 교차된 밀리초 경계 수를 계산합니다. SQL Server DATEDIFF(millisecond, @startDate, @endDate)에 해당합니다.

DateDiffMillisecond(DbFunctions, Nullable<DateOnly>, Nullable<DateOnly>)

endDate사이에 startDate 교차된 밀리초 경계 수를 계산합니다. SQL Server DATEDIFF(millisecond, @startDate, @endDate)에 해당합니다.

DateDiffMillisecond(DbFunctions, Nullable<DateTime>, Nullable<DateTime>)

endDate사이에 startDate 교차된 밀리초 경계 수를 계산합니다. SQL Server DATEDIFF(millisecond, @startDate, @endDate)에 해당합니다.

DateDiffMillisecond(DbFunctions, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

endDate사이에 startDate 교차된 밀리초 경계 수를 계산합니다. SQL Server DATEDIFF(millisecond, @startDate, @endDate)에 해당합니다.

DateDiffMillisecond(DbFunctions, Nullable<TimeOnly>, Nullable<TimeOnly>)

endTime사이에 startTime 교차된 밀리초 경계 수를 계산합니다. SQL Server DATEDIFF(millisecond, @startTime, @endTime)에 해당합니다.

DateDiffMillisecond(DbFunctions, Nullable<TimeSpan>, Nullable<TimeSpan>)

endTimeSpan사이에 startTimeSpan 교차된 밀리초 경계 수를 계산합니다. SQL Server DATEDIFF(millisecond, @startTimeSpan, @endTimeSpan)에 해당합니다.

DateDiffMillisecond(DbFunctions, TimeOnly, TimeOnly)

endTime사이에 startTime 교차된 밀리초 경계 수를 계산합니다. SQL Server DATEDIFF(millisecond, @startTime, @endTime)에 해당합니다.

DateDiffMillisecond(DbFunctions, TimeSpan, TimeSpan)

endTimeSpan사이에 startTimeSpan 교차된 밀리초 경계 수를 계산합니다. SQL Server DATEDIFF(millisecond, @startTimeSpan, @endTimeSpan)에 해당합니다.

DateDiffMinute(DbFunctions, DateOnly, DateOnly)

endDate사이에 startDate 교차된 분 경계 수를 계산합니다. SQL Server DATEDIFF(minute, @startDate, @endDate)에 해당합니다.

DateDiffMinute(DbFunctions, DateTime, DateTime)

endDate사이에 startDate 교차된 분 경계 수를 계산합니다. SQL Server DATEDIFF(minute, @startDate, @endDate)에 해당합니다.

DateDiffMinute(DbFunctions, DateTimeOffset, DateTimeOffset)

endDate사이에 startDate 교차된 분 경계 수를 계산합니다. SQL Server DATEDIFF(minute, @startDate, @endDate)에 해당합니다.

DateDiffMinute(DbFunctions, Nullable<DateOnly>, Nullable<DateOnly>)

endDate사이에 startDate 교차된 분 경계 수를 계산합니다. SQL Server DATEDIFF(minute, @startDate, @endDate)에 해당합니다.

DateDiffMinute(DbFunctions, Nullable<DateTime>, Nullable<DateTime>)

endDate사이에 startDate 교차된 분 경계 수를 계산합니다. SQL Server DATEDIFF(minute, @startDate, @endDate)에 해당합니다.

DateDiffMinute(DbFunctions, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

endDate사이에 startDate 교차된 분 경계 수를 계산합니다. SQL Server DATEDIFF(minute, @startDate, @endDate)에 해당합니다.

DateDiffMinute(DbFunctions, Nullable<TimeOnly>, Nullable<TimeOnly>)

endTime사이에 startTime 교차된 분 경계 수를 계산합니다. SQL Server DATEDIFF(minute, @startTime, @endTime)에 해당합니다.

DateDiffMinute(DbFunctions, Nullable<TimeSpan>, Nullable<TimeSpan>)

endTimeSpan사이에 startTimeSpan 교차된 분 경계 수를 계산합니다. SQL Server DATEDIFF(minute, @startTimeSpan, @endTimeSpan)에 해당합니다.

DateDiffMinute(DbFunctions, TimeOnly, TimeOnly)

endTime사이에 startTime 교차된 분 경계 수를 계산합니다. SQL Server DATEDIFF(minute, @startTime, @endTime)에 해당합니다.

DateDiffMinute(DbFunctions, TimeSpan, TimeSpan)

endTimeSpan사이에 startTimeSpan 교차된 분 경계 수를 계산합니다. SQL Server DATEDIFF(minute, @startTimeSpan, @endTimeSpan)에 해당합니다.

DateDiffMonth(DbFunctions, DateOnly, DateOnly)

endDate간에 startDate 교차된 월 경계 수를 계산합니다. SQL Server DATEDIFF(month, @startDate, @endDate)에 해당합니다.

DateDiffMonth(DbFunctions, DateTime, DateTime)

endDate간에 startDate 교차된 월 경계 수를 계산합니다. SQL Server DATEDIFF(month, @startDate, @endDate)에 해당합니다.

DateDiffMonth(DbFunctions, DateTimeOffset, DateTimeOffset)

endDate간에 startDate 교차된 월 경계 수를 계산합니다. SQL Server DATEDIFF(month, @startDate, @endDate)에 해당합니다.

DateDiffMonth(DbFunctions, Nullable<DateOnly>, Nullable<DateOnly>)

endDate간에 startDate 교차된 월 경계 수를 계산합니다. SQL Server DATEDIFF(month, @startDate, @endDate)에 해당합니다.

DateDiffMonth(DbFunctions, Nullable<DateTime>, Nullable<DateTime>)

endDate간에 startDate 교차된 월 경계 수를 계산합니다. SQL Server DATEDIFF(month, @startDate, @endDate)에 해당합니다.

DateDiffMonth(DbFunctions, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

endDate간에 startDate 교차된 월 경계 수를 계산합니다. SQL Server DATEDIFF(month, @startDate, @endDate)에 해당합니다.

DateDiffNanosecond(DbFunctions, DateOnly, DateOnly)

endDate사이에 startDate 교차된 나노초 경계의 수를 계산합니다. SQL Server DATEDIFF(nanosecond, @startDate, @endDate)에 해당합니다.

DateDiffNanosecond(DbFunctions, DateTime, DateTime)

endDate사이에 startDate 교차된 나노초 경계의 수를 계산합니다. SQL Server DATEDIFF(nanosecond, @startDate, @endDate)에 해당합니다.

DateDiffNanosecond(DbFunctions, DateTimeOffset, DateTimeOffset)

endDate사이에 startDate 교차된 나노초 경계의 수를 계산합니다. SQL Server DATEDIFF(nanosecond, @startDate, @endDate)에 해당합니다.

DateDiffNanosecond(DbFunctions, Nullable<DateOnly>, Nullable<DateOnly>)

endDate사이에 startDate 교차된 나노초 경계의 수를 계산합니다. SQL Server DATEDIFF(nanosecond, @startDate, @endDate)에 해당합니다.

DateDiffNanosecond(DbFunctions, Nullable<DateTime>, Nullable<DateTime>)

endDate사이에 startDate 교차된 나노초 경계의 수를 계산합니다. SQL Server DATEDIFF(nanosecond, @startDate, @endDate)에 해당합니다.

DateDiffNanosecond(DbFunctions, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

endDate사이에 startDate 교차된 나노초 경계의 수를 계산합니다. SQL Server DATEDIFF(nanosecond, @startDate, @endDate)에 해당합니다.

DateDiffNanosecond(DbFunctions, Nullable<TimeOnly>, Nullable<TimeOnly>)

endTime사이에 startTime 교차된 나노초 경계의 수를 계산합니다. SQL Server DATEDIFF(nanosecond, @startTime, @endTime)에 해당합니다.

DateDiffNanosecond(DbFunctions, Nullable<TimeSpan>, Nullable<TimeSpan>)

endTimeSpan사이에 startTimeSpan 교차된 나노초 경계의 수를 계산합니다. SQL Server DATEDIFF(nanosecond, @startTimeSpan, @endTimeSpan)에 해당합니다.

DateDiffNanosecond(DbFunctions, TimeOnly, TimeOnly)

endTime사이에 startTime 교차된 나노초 경계의 수를 계산합니다. SQL Server DATEDIFF(nanosecond, @startTime, @endTime)에 해당합니다.

DateDiffNanosecond(DbFunctions, TimeSpan, TimeSpan)

endTimeSpan사이에 startTimeSpan 교차된 나노초 경계의 수를 계산합니다. SQL Server DATEDIFF(nanosecond, @startTimeSpan, @endTimeSpan)에 해당합니다.

DateDiffSecond(DbFunctions, DateOnly, DateOnly)

endDate사이에 startDate 교차된 두 번째 경계의 수를 계산합니다. SQL Server DATEDIFF(second, @startDate, @endDate)에 해당합니다.

DateDiffSecond(DbFunctions, DateTime, DateTime)

endDate사이에 startDate 교차된 두 번째 경계의 수를 계산합니다. SQL Server DATEDIFF(second, @startDate, @endDate)에 해당합니다.

DateDiffSecond(DbFunctions, DateTimeOffset, DateTimeOffset)

endDate사이에 startDate 교차된 두 번째 경계의 수를 계산합니다. SQL Server DATEDIFF(second, @startDate, @endDate)에 해당합니다.

DateDiffSecond(DbFunctions, Nullable<DateOnly>, Nullable<DateOnly>)

endDate사이에 startDate 교차된 두 번째 경계의 수를 계산합니다. SQL Server DATEDIFF(second, @startDate, @endDate)에 해당합니다.

DateDiffSecond(DbFunctions, Nullable<DateTime>, Nullable<DateTime>)

endDate사이에 startDate 교차된 두 번째 경계의 수를 계산합니다. SQL Server DATEDIFF(second, @startDate, @endDate)에 해당합니다.

DateDiffSecond(DbFunctions, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

endDate사이에 startDate 교차된 두 번째 경계의 수를 계산합니다. SQL Server DATEDIFF(second, @startDate, @endDate)에 해당합니다.

DateDiffSecond(DbFunctions, Nullable<TimeOnly>, Nullable<TimeOnly>)

endTime사이에 startTime 교차된 두 번째 경계의 수를 계산합니다. SQL Server DATEDIFF(second, @startTime, @endTime)에 해당합니다.

DateDiffSecond(DbFunctions, Nullable<TimeSpan>, Nullable<TimeSpan>)

endTimeSpan사이에 startTimeSpan 교차된 두 번째 경계의 수를 계산합니다. SQL Server DATEDIFF(second, @startTimeSpan, @endTimeSpan)에 해당합니다.

DateDiffSecond(DbFunctions, TimeOnly, TimeOnly)

endTime사이에 startTime 교차된 두 번째 경계의 수를 계산합니다. SQL Server DATEDIFF(second, @startTime, @endTime)에 해당합니다.

DateDiffSecond(DbFunctions, TimeSpan, TimeSpan)

endTimeSpan사이에 startTimeSpan 교차된 두 번째 경계의 수를 계산합니다. SQL Server DATEDIFF(second, @startTimeSpan, @endTimeSpan)에 해당합니다.

DateDiffWeek(DbFunctions, DateOnly, DateOnly)

endDate사이에 startDate 교차된 주 경계 수를 계산합니다. SQL Server DATEDIFF(week, @startDate, @endDate)에 해당합니다.

DateDiffWeek(DbFunctions, DateTime, DateTime)

endDate사이에 startDate 교차된 주 경계 수를 계산합니다. SQL Server DATEDIFF(week, @startDate, @endDate)에 해당합니다.

DateDiffWeek(DbFunctions, DateTimeOffset, DateTimeOffset)

endDate사이에 startDate 교차된 주 경계 수를 계산합니다. SQL Server DATEDIFF(week, @startDate, @endDate)에 해당합니다.

DateDiffWeek(DbFunctions, Nullable<DateOnly>, Nullable<DateOnly>)

endDate사이에 startDate 교차된 주 경계 수를 계산합니다. SQL Server DATEDIFF(week, @startDate, @endDate)에 해당합니다.

DateDiffWeek(DbFunctions, Nullable<DateTime>, Nullable<DateTime>)

endDate사이에 startDate 교차된 주 경계 수를 계산합니다. SQL Server DATEDIFF(week, @startDate, @endDate)에 해당합니다.

DateDiffWeek(DbFunctions, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

endDate사이에 startDate 교차된 주 경계 수를 계산합니다. SQL Server DATEDIFF(week, @startDate, @endDate)에 해당합니다.

DateDiffYear(DbFunctions, DateOnly, DateOnly)

endDate사이에 startDate 교차된 연도 경계 수를 계산합니다. SQL Server DATEDIFF(year, @startDate, @endDate)에 해당합니다.

DateDiffYear(DbFunctions, DateTime, DateTime)

endDate사이에 startDate 교차된 연도 경계 수를 계산합니다. SQL Server DATEDIFF(year, @startDate, @endDate)에 해당합니다.

DateDiffYear(DbFunctions, DateTimeOffset, DateTimeOffset)

endDate사이에 startDate 교차된 연도 경계 수를 계산합니다. SQL Server DATEDIFF(year, @startDate, @endDate)에 해당합니다.

DateDiffYear(DbFunctions, Nullable<DateOnly>, Nullable<DateOnly>)

endDate사이에 startDate 교차된 연도 경계 수를 계산합니다. SQL Server DATEDIFF(year, @startDate, @endDate)에 해당합니다.

DateDiffYear(DbFunctions, Nullable<DateTime>, Nullable<DateTime>)

endDate사이에 startDate 교차된 연도 경계 수를 계산합니다. SQL Server DATEDIFF(year, @startDate, @endDate)에 해당합니다.

DateDiffYear(DbFunctions, Nullable<DateTimeOffset>, Nullable<DateTimeOffset>)

endDate사이에 startDate 교차된 연도 경계 수를 계산합니다. SQL Server DATEDIFF(year, @startDate, @endDate)에 해당합니다.

DateFromParts(DbFunctions, Int32, Int32, Int32)

구조체의 DateTime 새 instance 지정된 연도, 월, 일로 초기화합니다. SQL Server DATEFROMPARTS(year, month, day)에 해당합니다.

DateTime2FromParts(DbFunctions, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32)

구조체의 DateTime 새 instance 지정된 연도, 월, 일, 시간, 분, 초, 분수 및 정밀도로 초기화합니다. SQL Server DATETIME2FROMPARTS(year, month, day, hour, minute, seconds, fractions, precision)에 해당합니다.

DateTimeFromParts(DbFunctions, Int32, Int32, Int32, Int32, Int32, Int32, Int32)

DateTime 구조체의 새 인스턴스를 지정된 연도, 월, 일, 시, 분, 초 및 밀리초로 초기화합니다. SQL Server DATETIMEFROMPARTS(year, month, day, hour, minute, second, millisecond)에 해당합니다.

DateTimeOffsetFromParts(DbFunctions, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32, Int32)

구조체의 DateTimeOffset 새 instance 지정된 연도, 월, 일, 시간, 분, 초, 분수, hourOffset, minuteOffset 및 전체 자릿수로 초기화합니다. SQL Server DATETIMEOFFSETFROMPARTS(year, month, day, hour, minute, seconds, fractions, hour_offset, minute_offset, precision) .

FreeText(DbFunctions, Object, String)

LINQ 쿼리에서 SQL Server FREETEXT 저장소 함수를 대상으로 하는 데 사용할 수 있는 DbFunction 메서드 스텁입니다.

FreeText(DbFunctions, Object, String, Int32)

LINQ 쿼리에서 SQL Server FREETEXT 저장소 함수를 대상으로 하는 데 사용할 수 있는 DbFunction 메서드 스텁입니다.

FreeText(DbFunctions, String, String)

LINQ 쿼리에서 SQL Server FREETEXT 저장소 함수를 대상으로 하는 데 사용할 수 있는 DbFunction 메서드 스텁입니다.

FreeText(DbFunctions, String, String, Int32)

LINQ 쿼리에서 SQL Server FREETEXT 저장소 함수를 대상으로 하는 데 사용할 수 있는 DbFunction 메서드 스텁입니다.

IsDate(DbFunctions, String)

지정된 문자열이 유효한 날짜인지 확인합니다. SQL Server ISDATE('date')에 해당합니다.

IsNumeric(DbFunctions, String)

지정된 문자열이 유효한 숫자인지 확인합니다. SQL Server ISNUMERIC(expression)에 해당합니다.

SmallDateTimeFromParts(DbFunctions, Int32, Int32, Int32, Int32, Int32)

구조체의 DateTime 새 instance 지정된 연도, 월, 일, 시간 및 분으로 초기화합니다. SQL Server SMALLDATETIMEFROMPARTS(year, month, day, hour, minute)에 해당합니다.

StandardDeviationPopulation(DbFunctions, IEnumerable<Byte>)

지정된 식에 있는 모든 값의 모집단 표준 편차를 반환합니다. SQL Server STDEVP에 해당합니다.

StandardDeviationPopulation(DbFunctions, IEnumerable<Decimal>)

지정된 식에 있는 모든 값의 모집단 표준 편차를 반환합니다. SQL Server STDEVP에 해당합니다.

StandardDeviationPopulation(DbFunctions, IEnumerable<Double>)

지정된 식에 있는 모든 값의 모집단 표준 편차를 반환합니다. SQL Server STDEVP에 해당합니다.

StandardDeviationPopulation(DbFunctions, IEnumerable<Int16>)

지정된 식에 있는 모든 값의 모집단 표준 편차를 반환합니다. SQL Server STDEVP에 해당합니다.

StandardDeviationPopulation(DbFunctions, IEnumerable<Int32>)

지정된 식에 있는 모든 값의 모집단 표준 편차를 반환합니다. SQL Server STDEVP에 해당합니다.

StandardDeviationPopulation(DbFunctions, IEnumerable<Int64>)

지정된 식에 있는 모든 값의 모집단 표준 편차를 반환합니다. SQL Server STDEVP에 해당합니다.

StandardDeviationPopulation(DbFunctions, IEnumerable<Single>)

지정된 식에 있는 모든 값의 모집단 표준 편차를 반환합니다. SQL Server STDEVP에 해당합니다.

StandardDeviationSample(DbFunctions, IEnumerable<Byte>)

지정된 식에 있는 모든 값의 샘플 표준 편차를 반환합니다. SQL Server STDEV에 해당합니다.

StandardDeviationSample(DbFunctions, IEnumerable<Decimal>)

지정된 식에 있는 모든 값의 샘플 표준 편차를 반환합니다. SQL Server STDEV에 해당합니다.

StandardDeviationSample(DbFunctions, IEnumerable<Double>)

지정된 식에 있는 모든 값의 샘플 표준 편차를 반환합니다. SQL Server STDEV에 해당합니다.

StandardDeviationSample(DbFunctions, IEnumerable<Int16>)

지정된 식에 있는 모든 값의 샘플 표준 편차를 반환합니다. SQL Server STDEV에 해당합니다.

StandardDeviationSample(DbFunctions, IEnumerable<Int32>)

지정된 식에 있는 모든 값의 샘플 표준 편차를 반환합니다. SQL Server STDEV에 해당합니다.

StandardDeviationSample(DbFunctions, IEnumerable<Int64>)

지정된 식에 있는 모든 값의 샘플 표준 편차를 반환합니다. SQL Server STDEV에 해당합니다.

StandardDeviationSample(DbFunctions, IEnumerable<Single>)

지정된 식에 있는 모든 값의 샘플 표준 편차를 반환합니다. SQL Server STDEV에 해당합니다.

TimeFromParts(DbFunctions, Int32, Int32, Int32, Int32, Int32)

구조체의 TimeSpan 새 instance 지정된 시간, 분, 초, 분수 및 정밀도로 초기화합니다. SQL Server TIMEFROMPARTS(hour, minute, seconds, fractions, precision)에 해당합니다.

VariancePopulation(DbFunctions, IEnumerable<Byte>)

지정된 식에 있는 모든 값의 모집단 분산을 반환합니다. SQL Server VARP에 해당합니다.

VariancePopulation(DbFunctions, IEnumerable<Decimal>)

지정된 식에 있는 모든 값의 모집단 분산을 반환합니다. SQL Server VARP에 해당합니다.

VariancePopulation(DbFunctions, IEnumerable<Double>)

지정된 식에 있는 모든 값의 모집단 분산을 반환합니다. SQL Server VARP에 해당합니다.

VariancePopulation(DbFunctions, IEnumerable<Int16>)

지정된 식에 있는 모든 값의 모집단 분산을 반환합니다. SQL Server VARP에 해당합니다.

VariancePopulation(DbFunctions, IEnumerable<Int32>)

지정된 식에 있는 모든 값의 모집단 분산을 반환합니다. SQL Server VARP에 해당합니다.

VariancePopulation(DbFunctions, IEnumerable<Int64>)

지정된 식에 있는 모든 값의 모집단 분산을 반환합니다. SQL Server VARP에 해당합니다.

VariancePopulation(DbFunctions, IEnumerable<Single>)

지정된 식에 있는 모든 값의 모집단 분산을 반환합니다. SQL Server VARP에 해당합니다.

VarianceSample(DbFunctions, IEnumerable<Byte>)

지정된 식에 있는 모든 값의 샘플 분산을 반환합니다. SQL Server VAR에 해당합니다.

VarianceSample(DbFunctions, IEnumerable<Decimal>)

지정된 식에 있는 모든 값의 샘플 분산을 반환합니다. SQL Server VAR에 해당합니다.

VarianceSample(DbFunctions, IEnumerable<Double>)

지정된 식에 있는 모든 값의 샘플 분산을 반환합니다. SQL Server VAR에 해당합니다.

VarianceSample(DbFunctions, IEnumerable<Int16>)

지정된 식에 있는 모든 값의 샘플 분산을 반환합니다. SQL Server VAR에 해당합니다.

VarianceSample(DbFunctions, IEnumerable<Int32>)

지정된 식에 있는 모든 값의 샘플 분산을 반환합니다. SQL Server VAR에 해당합니다.

VarianceSample(DbFunctions, IEnumerable<Int64>)

지정된 식에 있는 모든 값의 샘플 분산을 반환합니다. SQL Server VAR에 해당합니다.

VarianceSample(DbFunctions, IEnumerable<Single>)

지정된 식에 있는 모든 값의 샘플 분산을 반환합니다. SQL Server VAR에 해당합니다.

적용 대상