Query Questions 2.0

Question for the C# API for Couhbase.Lite 2.0.3

Can I append some Expressions to an existing query built with QueryBuilder. In some cases it is cleaner to have a base query and add conditions based on parameters passed in. I saw the parameters but this does not handle all use cases.

Thanks

That would make it a different query. Just build a new query with those expressions.

yes - that works. In LINQ queries I can start with a base query and add stuff on - which is nice because I can share the base query. I was hoping this could work in the API as well. If it does not that is fine - I just wanted to make sure I was not missing something.

Thanks