Skip to content

Commit 653d507

Browse files
committed
minor changes
1 parent 803dd30 commit 653d507

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,3 +286,6 @@ __pycache__/
286286
*.btm.cs
287287
*.odx.cs
288288
*.xsd.cs
289+
290+
# nuget
291+
nuget.exe

src/JQDT/DataProcessing/Common/ContainsExpressionBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ private Expression BuildComparissonExpression(Type propertyType, Expression toLo
8080
}
8181

8282
// search value as lower case char type value
83-
var searchCharValExpr = Expression.Constant(Char.ToLower(search.Single()));
83+
var searchCharValExpr = Expression.Constant(char.ToLower(search.Single()));
8484

8585
// x => x == search
8686
var charValue = char.Parse(search);

0 commit comments

Comments
 (0)