Replies: 1 comment 3 replies
-
|
Hi @nouaim, sry ignore my AI assistant first response (I delete it), it is apparently confused what you're asking, if you don't want to pass it as query string you can use post it as JSON, am I also missing something? |
Beta Was this translation helpful? Give feedback.
3 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.
-
For example, we have a Teacher table which has 4 columns : fullName, email. gender, phone.
and we want to implement a global search:
is there a way to send :
http://localhost:5000/api/teachers?pageNumber=1&pageSize=10&filter=somethingorhttp://localhost:5000/api/teachers?pageNumber=1&pageSize=10&search=somethinginstead of sending big urls with big OR statement like this:http://localhost:5000/api/teachers?pageNumber=1&pageSize=10&filter=(fullName%3D*something%7Cemail%3D*something%7CphoneNumber%3D*something)&orderBy=and you can imagine if the collumns are higher than this.
Beta Was this translation helpful? Give feedback.
All reactions