Skip to content

Commit

Permalink
Fixed Expression for accent ignoring
Browse files Browse the repository at this point in the history
  • Loading branch information
VILLAN3LL3 committed May 14, 2024
1 parent 3214186 commit a5032d0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public override Expression HandleOperation(
Expression.NotEqual(
Expression.Call(
Expression.Constant(CultureInfo.InvariantCulture.CompareInfo),
typeof(string).GetMethod(nameof(CompareInfo.IndexOf), [typeof(string), typeof(string), typeof(CompareOptions)]),
typeof(CompareInfo).GetMethod(nameof(CompareInfo.IndexOf), [typeof(string), typeof(string), typeof(CompareOptions)]),
property,
Expression.Constant(str),
Expression.Constant(CompareOptions.IgnoreNonSpace | CompareOptions.IgnoreCase)
Expand Down

0 comments on commit a5032d0

Please sign in to comment.