I have this ActionLink into view named catalog
@Html.ActionLink("Formations", "Index", "Formation", new { id = item.Id },null)
and I want to get the list of formations of this catalog id.
How can I do this ?
In my database I have two tables :
Catalog:idC (PK),NameC,Date
Formation:idF(PK),idC(FK),NameF.