August 2017
Intermediate to advanced
330 pages
7h 26m
English
Delete is used to delete data. All you need is the ID:
[Route("{id}")]
[HttpDelete]
public IHttpActionResult Delete(string id)
These are the actions that we will use in our controllers. I have looked at the Actions attribute separately from the controllers, so we can give it some attention without worrying about the implementation.