Hi,
I am looking to prefetch using the contents of a collection as a filter.
My database has a table of Subscribers which is linked to a Countries table.
In code, I have a collection of countries and want to query for subscribers who are not in these countries.
So, for example:
Ben is from USA.
Stan is from UK.
Joe is from Sweden.
Peter is from Germany.
I have a collection with two countries in it: Sweden and USA.
I want the subscribers who are not from Sweden and the USA.
My query should return Stan and Peter.
How can I do this with LLBL?
Thanks,
Tim