How does LinqKit PredicateBuilder join Expressions together?

I’m using LinqKit 1.2.3 and I was just trying out how to combine multiple expressions. Basically what I wanted to achieve is "give me results which match A && B && (C || D)". I made the bellow code as an example: string[] values = new string[] { "1","2","3","11","56", "2","543","345","13421","562467", "14324","23452","36789","10001","556876", "1234","2432423","36456456","187681","50006", }; ExpressionStarter<String> masterPredicate… Read More How does LinqKit PredicateBuilder join Expressions together?