Skip to content

Instantly share code, notes, and snippets.

@httpmurilo
Created May 7, 2020 02:49
Show Gist options
  • Save httpmurilo/d6b96641d45e5744e9e45606a6fba94e to your computer and use it in GitHub Desktop.
Save httpmurilo/d6b96641d45e5744e9e45606a6fba94e to your computer and use it in GitHub Desktop.
getPorId
[HttpGet("{id}")]
public IActionResult RetornarClientePorId(int id)
{
_context.Autores.ToList();
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