I try to get this to work but it doesn't show me any error or exception currently it just doesn't show up in the view...
@if (Model.Recetas != null)
{
<div class="row">
@foreach (Receta receta in Model.Recetas)
{
<div class="col-md-4">
<div class="well">
<h4>@Html.ActionLink(receta.Titulo, "Receta", new { id = receta.Id, @class = "Recetas" })</h4>
<a href="@Url.Action("Receta", new { id = receta.Id })">
<img src="~/img/fotos/@receta.CoverImageFileName" alt="@receta.MostrarTexto" class="img-responsive" />
</a>
</div>
</div>
}
</div>
}
As I have already told you, after correctly initializing the Model, this part of the view would look like this: