I created a project in MVC5 over Entity Framework and AngularJS. Now, what I want is to pass every database object to an MVC controller, in order to update their values. (ex: to modify a "customer" value) The following code doesn't work..
<table class="table">
<tr ng-repeat="r in customers">
<td>{{r.ID}}</td>
<td>{{r.LastName}}</td>
<td>{{r.FirstName}}</td>
<td>{{r.Phone}}</td>
<td>{{r.Email}}</td>
<td><a href="@Url.Action("Edit","Edit")?id={{r.ID}}"></a></td>
</tr>
</table>
Please help me about how to pass r.ID to the razor above
@Html.ActionLink("Edit", "Edit", new { id = r.ID })