Luego de investigar con expertos en el tema, programadores de varias ramas y profesores hemos dado con la solución a la pregunta y la compartimos en esta publicación.
Ejemplo: seleccione un solo elemento de la lista C#
using(var db =newApplicationDbContext())///itemModel is the model with gets & setsvar file = db.Table
.Where(x => x.Id == id).Select( x =>newitemModel
itemTest = x.itemTest,).ToList();///creating a new modelModelList ML =newModelList();///creating a new list
ML.ViewModelList =newList<ViewModel>();///getting each item from listforeach(var item in file)ViewModel img =newViewModel();
img.itemTest = item.itemTest;
ML.ViewModelList.Add(img);///selecting the last item from the listvar singleitem = ML.ViewModelList.Select(x => x.itemTest).LastOrDefault();
Si entiendes que te ha sido de ayuda nuestro artículo, sería de mucha ayuda si lo compartes con más entusiastas de la programación de esta forma nos ayudas a difundir este contenido.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)