From 96142cc49c24d8913f11e4b681653de8949054c1 Mon Sep 17 00:00:00 2001 From: Shay Rojansky Date: Tue, 5 Oct 2021 00:09:56 +0200 Subject: [PATCH] Update translation for SQL Server string.IsNullOrWhitespace (#3461) Closes #26236 --- entity-framework/core/providers/sql-server/functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entity-framework/core/providers/sql-server/functions.md b/entity-framework/core/providers/sql-server/functions.md index c0882fe765..c7e1631cb0 100644 --- a/entity-framework/core/providers/sql-server/functions.md +++ b/entity-framework/core/providers/sql-server/functions.md @@ -176,7 +176,7 @@ EF.Functions.Like(matchExpression, pattern, escapeCharacter) | @match string.Compare(strA, strB) | CASE WHEN @strA = @strB THEN 0 ... END string.Concat(str0, str1) | @str0 + @str1 string.IsNullOrEmpty(value) | @value IS NULL OR @value LIKE N'' -string.IsNullOrWhiteSpace(value) | @value IS NULL OR LTRIM(RTRIM(@value)) = N'' +string.IsNullOrWhiteSpace(value) | @value IS NULL OR @value = N'' stringValue.CompareTo(strB) | CASE WHEN @stringValue = @strB THEN 0 ... END stringValue.Contains(value) | @stringValue LIKE N'%' + @value + N'%' stringValue.EndsWith(value) | @stringValue LIKE N'%' + @value