I am building an FTSearch query dynamically. Basically, I am calculating the statments in a query looking like this:
statement1 AND statement2 AND statement3
Question: if I want a statement to simply be True or False, how can I do it in an FTSearch? I can use @True or @False in a normal search, but not here.
PS: I know I can rewrite the code to build the query differently, but due to timing restrictions I need to use the existing code, which used to built a normal search.