Possible to group auto mapper create maps?
I have something like this
public static class RegisterMaps
{
public static void Register()
{
// Mapper.Create
}
}
I am noticing now that I have so many Maps that is it getting quite 开发者_开发百科out of hand. I am wondering is there away to group them together so they are easier to find?
Check out Profiles. They should help you out.
精彩评论