ZEXSM / OData.QueryBuilder

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

Method StartsWith not supported #59

Closed K1aidy closed 3 years ago

K1aidy commented 3 years ago

There is not enough implementation for the StartsWith method when working with strings. For example:

...
.Filter(o => o.Name.StartsWith('some-name'))
...

This should be transpiled to:

$filter=startswith(Name,'some-name')