ZEXSM / OData.QueryBuilder

OData.QueryBuilder - library for creating complex OData queries (OData version 4.01) based on data models with linq syntax.
MIT License
77 stars 31 forks source link

Support reusing Expressions between filters on the expand level and any/all conditions on the root level. #124

Open LinusCenterstrom opened 8 months ago

LinusCenterstrom commented 8 months ago

fixes ZEXSM/OData.QueryBuilder#123

Possible breaking: Changed the All and Any methods to take Expression<Func<T, bool>> instead of Func<T, bool>. As far as I can tell this does not impact anything since explicitly passing a non-null Func<T, bool> previously was unsupported.

Unsure what caused the whitespace changes, LMK if you want me to fix it