I have a view created with Razor with the list template based on a model, the view is fine and it shows in a grid the data of the list, and also has its 3 links (edit datail delete), what I need is that one of those links (or add a fourth link or button) allows me to capture the value of the record (a row of the grid that basically is a tr of the table) whole (of an instance of the model) and pass it to an action of the controller by means of post. There are N examples of how to retrieve a data from the row of the grid and pass it through the URL to an action of a controller, I do not want to pass data in the url, and not only do I need a data, I need the entire row.
Or in the last case, how can I pass the value of a cell in the grid by means of a post and how do I recover it? This is not exactly what I need, but to begin with, it can serve me very well.
Note: As an analogy, I give the example that in webform (I already know that mvc and webform are totally different) you can select a record in the grid and in the select event access each of them the attributes of the grid as it was a matrix, without having to pass it through the url an attribute or anything like that. Something similar I want to be able to do from MVC