Replies: 2 comments
-
@Kebechet Did you try to customize the 'IFilterBinder' to ignore certain node binding? If you still need more help on this requirement, feel free let me know or please email to: [email protected] for quick rely. thanks. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi @xuzhg |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Currently we have this oData query wrapper
And in
ApplyODataFilter
I would like to ignore filtering based on value e.g. Lastname.So if the query contains
$filter=Firstname eq 'John' and Lastname eq 'Smith'
. I would like to say on the backend ignore theLastname
in the filtering,Why would I want something like this?
Because some fields in our queries can be filtered on the DB level but some are calculated only in memory. And this way I would like to at least prefilter what we can in the DBs and the rest will be done in-memory.
Is something like that possible?
Beta Was this translation helpful? Give feedback.
All reactions