Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Post-Join Filter expression doesn't work #250

Open
funlambda opened this issue Dec 31, 2015 · 0 comments
Open

Post-Join Filter expression doesn't work #250

funlambda opened this issue Dec 31, 2015 · 0 comments

Comments

@funlambda
Copy link

I'm unable to get filters applied after doing an outer join to work. Here's my query in C#:

Query.Db("test")
     .Table<Util.Stored<Scrape.ScrapeResult>>("ScrapeResults")
     .OuterJoin(Query.Db("test").Table<Scrape.IgnoredScrapeResult>("IgnoredScrapeResults"), 
                (sr, isr) => sr.ID == isr.IgnoredID)
     .Filter(y => y.Item2 == null)
     .Map(x => x.Item1)

I'm getting this exception message:

Failed to perform client-side evaluation of expression tree node 'y.Item2'; this is caused by refering to a server-side variable in an expression tree that isn't convertible to ReQL logic

Full stack trace: exception.txt

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant