Open
Description
I'm trying to filter a database with a method like this:
var test = await _client
.From<TestTable>()
.Where(u => listOfInts.Contains(u.fieldOfTypeInt))
.Get();
However, this give me an error like this:
System.InvalidOperationException: variable 'u' of type 'Database.Models.TestTable' referenced from scope '', but it is not defined
at System.Linq.Expressions.Compiler.VariableBinder.Reference(ParameterExpression node, VariableStorageKind storage)
at System.Linq.Expressions.Compiler.VariableBinder.VisitParameter(ParameterExpression node)
at System.Linq.Expressions.MemberExpression.Accept(ExpressionVisitor visitor)
at System.Linq.Expressions.ExpressionVisitor.Visit(ReadOnlyCollection`1 nodes)
at System.Linq.Expressions.Compiler.VariableBinder.VisitLambda[T](Expression`1 node)
at System.Linq.Expressions.Compiler.LambdaCompiler.Compile(LambdaExpression lambda)
at Postgrest.Linq.WhereExpressionVisitor.GetArgumentValues(MethodCallExpression methodCall)
at Postgrest.Linq.WhereExpressionVisitor.VisitMethodCall(MethodCallExpression node)
at System.Linq.Expressions.ExpressionVisitor.VisitLambda[T](Expression`1 node)
at Postgrest.Table`1.Where(Expression`1 predicate)
...
If i try a filter method that does not use the Contains
collection method, there is no problem. Like:
var test = _client
.From<TestTable>()
.Where(u=> user.fieldOfTypeInt == 10);
(this works)