views:

55

answers:

1

I've just started using AutoMapper and so far found it very straight-forward and time-saving.

Just one thing I'm not sure about - how do I map all the properties of a given type in the same way?

Can this be done with AutoMapper in a single statement, using a lambda, as with regular mapping?

+2  A: 

try this one http://valueinjecter.codeplex.com, it was designed to map from all props of a specific type to another one in the first place

now it has much more features than that

Omu