Well I have the following environment:
Table:
Livro
id
titulo
tituloEN
descricao
descricaoEN
Controller:
[LivroController]
public ActionResult Index()
{
var livros = bdLivro.ListarTodos();
return View(livros);
}
View:
[Index]
@model List<Dominio.PUPO_Livro>
@foreach (var item in Model)
{
if(languagePT())
{
<p>@item.titulo</p>
<p>@item.descricao</p>
}
else
{
<p>@item.tituloEN</p>
<p>@item.descricaoEN</p>
}
}
I would like to know if there is any other method, other than by if.