Skip to content

Instantly share code, notes, and snippets.

@httpmurilo
Created June 19, 2020 23:47
Show Gist options
  • Save httpmurilo/005d181180b2e6e4450eb2bd7d05dc84 to your computer and use it in GitHub Desktop.
Save httpmurilo/005d181180b2e6e4450eb2bd7d05dc84 to your computer and use it in GitHub Desktop.
[HttpGet("{id}")]
public IActionResult RetornarAutorPorId(int id)
{
return Ok (_context.Autores.Where(x => x.Id == id));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment