Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Using Automapper, how do you handle the mapping of a property value on an object to an instance of a string. Basically I have a list of Role objects and I want to use Automapper to map the content of each "name" property to a corresponding list of string (so I just end up with a list of strings). I'm sure it has an obvious answer, but I can't find the mapping that I need to add to "CreateMap" to get it to work.

An example of the relevant code is shown below:

public class Role
{
   public Guid Id{get;set;}
   public string Name{get;set;}
   ...
   ...
}

// What goes in here?
Mapper.CreateMap<Role, string>().ForMember(....);

var allRoles = Mapper.Map<IList<Role>, IList<string>>(roles);
share|improve this question

1 Answer

up vote 3 down vote accepted

I love Automapper (and use it in a number of projects), but wouldn't this be easier with a simple LINQ statement?

var allRoles = from r in roles select r.Name

The AutoMapper way of accomplishing this:

Mapper.CreateMap<Role, String>().ConvertUsing(r => r.Name);
share|improve this answer
In this instance you are probably right and it would fit in with our infrastructure, but even so I'd be interested in knowing if/how it could be done with Automapper. – Paul Hadfield Dec 14 '10 at 14:35
1  
Sorry -- should have answered your original question. :) This should work: Mapper.CreateMap<Role, String>().ConvertUsing(r => r.Name); – Patrick Steele Dec 14 '10 at 15:17
Thanks for providing an Automapper way of doing this, it works exactly as I'd hoped. – Paul Hadfield Dec 15 '10 at 11:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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