Skip to content

Commit 95eaa78

Browse files
committed
Removes accidentally set ignore case
1 parent 34fcbc9 commit 95eaa78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Extensions/Xtensive.Orm.BulkOperations/Internals/QueryOperation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ protected override int ExecuteInternal()
3939
var methodInfo = ex.Method;
4040
//rewrite localCollection.Contains(entity.SomeField) -> entity.SomeField.In(localCollection)
4141
if (methodInfo.DeclaringType == typeof(Enumerable) &&
42-
string.Equals(methodInfo.Name, "Contains", StringComparison.OrdinalIgnoreCase) &&
42+
string.Equals(methodInfo.Name, "Contains", StringComparison.Ordinal) &&
4343
ex.Arguments.Count == 2) {
4444
var localCollection = ex.Arguments[0];//IEnumerable<T>
4545
var valueToCheck = ex.Arguments[1];

0 commit comments

Comments
 (0)