DbFunctionsExtensions.Like 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
Like(DbFunctions, String, String) |
SQL |
Like(DbFunctions, String, String, String) |
SQL LIKE 작업의 구현입니다. 관계형 데이터베이스에서는 일반적으로 SQL로 직접 변환됩니다. |
Like(DbFunctions, String, String)
SQL LIKE
작업의 구현입니다. 관계형 데이터베이스에서는 일반적으로 SQL로 직접 변환됩니다.
public static bool Like (this Microsoft.EntityFrameworkCore.DbFunctions _, string matchExpression, string pattern);
public static bool Like (this Microsoft.EntityFrameworkCore.DbFunctions _, string? matchExpression, string? pattern);
static member Like : Microsoft.EntityFrameworkCore.DbFunctions * string * string -> bool
<Extension()>
Public Function Like (_ As DbFunctions, matchExpression As String, pattern As String) As Boolean
매개 변수
DbFunctions 인스턴스입니다.
- matchExpression
- String
일치시킬 문자열입니다.
- pattern
- String
와일드카드를 포함할 수 있는 패턴입니다 %,_,[,],^
.
반환
true
일치하는 항목이 있으면 입니다.
설명
비교의 의미 체계는 데이터베이스 구성에 따라 달라집니다. 특히 대/소문자를 구분하거나 대/소문자를 구분하지 않을 수 있습니다.
이 DbFunction 메서드는 메모리 내 구현이 없으며 쿼리가 클라이언트 평가로 전환되면 throw됩니다. 이 문제는 쿼리에 저장소로 변환할 수 없는 하나 이상의 식이 포함된 경우에 발생할 수 있습니다.
적용 대상
Like(DbFunctions, String, String, String)
SQL LIKE 작업의 구현입니다. 관계형 데이터베이스에서는 일반적으로 SQL로 직접 변환됩니다.
public static bool Like (this Microsoft.EntityFrameworkCore.DbFunctions _, string matchExpression, string pattern, string escapeCharacter);
public static bool Like (this Microsoft.EntityFrameworkCore.DbFunctions _, string? matchExpression, string? pattern, string? escapeCharacter);
static member Like : Microsoft.EntityFrameworkCore.DbFunctions * string * string * string -> bool
<Extension()>
Public Function Like (_ As DbFunctions, matchExpression As String, pattern As String, escapeCharacter As String) As Boolean
매개 변수
DbFunctions 인스턴스입니다.
- matchExpression
- String
일치시킬 문자열입니다.
- pattern
- String
와일드카드 %,_,[,],^를 포함할 수 있는 패턴입니다.
- escapeCharacter
- String
와일드카드로 사용되지 않는 경우 %,_,[,],^ 앞에 사용할 이스케이프 문자(단일 문자 문자열)입니다.
반환
true
일치하는 항목이 있으면 입니다.
설명
비교의 의미 체계는 데이터베이스 구성에 따라 달라집니다. 특히 대/소문자를 구분하거나 대/소문자를 구분하지 않을 수 있습니다.
이 DbFunction 메서드는 메모리 내 구현이 없으며 쿼리가 클라이언트 평가로 전환되면 throw됩니다. 이 문제는 쿼리에 저장소로 변환할 수 없는 하나 이상의 식이 포함된 경우에 발생할 수 있습니다.
적용 대상
Entity Framework