WhereBuilder for CONTAINS predicate
Firstly thanks for the great library, it's much simpler than using the native StringBuilder.
Do you think it's possible to adapt the library to help build the search condition for the CONTAINS predicate? For example:
WHERE CONTAINS(Description, '(Aluminum AND spindle) OR (Steel AND cutters)')
I see there is a constructor for WhereBuilder, although no default constructor.
public WhereBuilder(SelectBuilder selectBuilder, StringBuilder builder);
Can a WhereBuilder instance be used to create the example above, just using And, AndIf, Or, OrIf?
Hi, @mguinness!
First, I'm happy that you're enjoying our lib!
I'm trying to figure it out how to put this in the API so that it makes sense. Could you provide us some usage sample of what are you thinking?