Skip to content

Commit

Permalink
Update translation for SQL Server string.IsNullOrWhitespace (#3461)
Browse files Browse the repository at this point in the history
Closes #26236
  • Loading branch information
roji authored Oct 4, 2021
1 parent d8ecec7 commit 96142cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entity-framework/core/providers/sql-server/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 96142cc

Please sign in to comment.