다음을 통해 공유


SqlFunctions.Difference(String, String) 메서드

정의

두 문자 식의 SOUNDEX 값을 비교하여 차이를 나타내는 정수 값을 반환합니다.

public:
 static Nullable<int> Difference(System::String ^ string1, System::String ^ string2);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "DIFFERENCE")]
public static int? Difference (string string1, string string2);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "DIFFERENCE")>]
static member Difference : string * string -> Nullable<int>
Public Shared Function Difference (string1 As String, string2 As String) As Nullable(Of Integer)

매개 변수

string1
String

첫 번째 문자열입니다.

string2
String

두 번째 문자열입니다.

반환

두 문자열의 SOUNDEX 차이입니다.

특성

설명

이 함수는 직접 호출할 수 없습니다. 이 함수는 LINQ to Entities 쿼리 내에만 나타날 수 있습니다.

이 함수는 데이터베이스의 해당 함수로 변환됩니다. 해당 SQL Server 함수에 대한 자세한 내용은 DIFFERENCE(Transact-SQL)를 참조하세요.

적용 대상