5
ViewBag.ListaEspecialidades = Especialidade.ListarEspecialidades().Sort();
Of a mistake
"cannot implicitly Convert type void to Dynamic".
5
ViewBag.ListaEspecialidades = Especialidade.ListarEspecialidades().Sort();
Of a mistake
"cannot implicitly Convert type void to Dynamic".
7
I believe that solves:
Especialidade.ListarEspecialidades().Sort();
ViewBag.ListaEspecialidades = Especialidade.ListarEspecialidades();
The Sort()
is a method void
there is no return, so erro
, has the functionality to sort the current list.
4
You can use Orderby(x => x.Fieldname) or Orderbydescending(x => x.Fieldname).
Example:
ViewBag.ListaEspecialidades = Especialidade.ListarEspecialidades().OrderBy(x => x.NomeDoCampo);
Browser other questions tagged c# asp.net-mvc-4
You are not signed in. Login or sign up in order to post.
gave the right answer?
– novic