Skip to content

Commit 7644257

Browse files
committed
Update ExpressionBuilder.cs
1 parent 2ea4aa8 commit 7644257

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/GraphQL.EntityFramework/Where/ExpressionBuilder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,13 +120,13 @@ static Expression ProcessList(string path, Comparison comparison, string?[]? val
120120
var buildPredicate = genericType
121121
.GetMethods(BindingFlags.Public | BindingFlags.Static)
122122
.SingleOrDefault(_ => _.Name == "BuildPredicate" &&
123-
_.GetParameters().Length == 5);
123+
_.GetParameters().Length == 5);
124124
if (buildPredicate == null)
125125
{
126126
throw new($"Could not find BuildPredicate method on {genericType.FullName}");
127127
}
128128

129-
var subPredicate = (Expression) buildPredicate
129+
var subPredicate = (Expression)buildPredicate
130130
.Invoke(
131131
new(),
132132
[

0 commit comments

Comments
 (0)