I'm wondering if there is a better way to do the following,

    IList<RoleViewModel> ReturnViewModel = new List<RoleViewModel>();

    IList<Role> AllRoles = PermServ.GetAllRoles();

    foreach (var CurRole in AllRoles)
    {
        ReturnViewModel.Add(new RoleViewModel(CurRole));
    }

Its pretty simple code simply taking the Data Object and converting it into a ViewModel. I was wondering if there was a way to do this better? - Maybe with Linq?

link|improve this question

feedback

3 Answers

up vote 7 down vote accepted

From the top of my head (not by dev machine).

IList<RoleViewModel> returnViewModel = PermServ.GetAllRoles()
                                        .Select(x => new RoleViewModel(x))
                                        .ToList();
link|improve this answer
'IList<Role> AllRoles =' should this be 'IList<RoleViewModel> AllRoles =' – Hath Dec 3 '09 at 15:27
People in glass houses ... right. :-) – Michael Gattuso Dec 3 '09 at 15:38
feedback
var returnViewModel  = (from n in PermServ.GetAllRoles()
                       select new RoleViewModel(n)).ToList();
link|improve this answer
Should be Select new RoleViewModel(n)).ToList(); No? – Michael Gattuso Dec 3 '09 at 15:23
yep - just saw it. – Hath Dec 3 '09 at 15:23
feedback

Another option is to use AutoMapper handle your conversions.

Mapper.CreateMap<Role, RoleModel>();
IList<RoleViewModel> returnViewModel = 
   Mapper.Map<IList<Role>, IList<RoleViewModel>>(PermServ.GetAllRoles());
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.