Link to home
Start Free TrialLog in
Avatar of glenn_r
glenn_r

asked on

Web Api - Does it support filters etc

Created a .net Web Api with a class and a controller. Using standard rest verbs i'm able to perform actions against all the http verbs. Out of the box does it support filters, top, sort, etc. Does not seem to work for me.
Avatar of Najam Uddin
Najam Uddin
Flag of United States of America image

No, for that you have to implement logic
Avatar of glenn_r
glenn_r

ASKER

Any templates that implement all that standard REST stuff?
Well, you have to support basic verbs. GET, POST, PATCH, DELETE, rest of things top, sort will go as GET. Other thing you should consider about is diff in PUT and POST and correctly implement PATCH

PUT is idempotent, so if you PUT an object twice, it has no effect.
Avatar of glenn_r

ASKER

any examples on how to implement this?
ASKER CERTIFIED SOLUTION
Avatar of Najam Uddin
Najam Uddin
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial