Skip to content

Instantly share code, notes, and snippets.

@sumitkharche
Created January 10, 2020 16:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sumitkharche/87c582a9d5eb3b42e7c92db507800627 to your computer and use it in GitHub Desktop.
Save sumitkharche/87c582a9d5eb3b42e7c92db507800627 to your computer and use it in GitHub Desktop.
Automapper.cs with projection
namespace automapper_sample
{
public class AutoMapperProfile : Profile
{
public AutoMapperProfile()
{
CreateMap<StudentDTO, Student>()
.ForMember(dest => dest.City, opt => opt.MapFrom(src => src.CurrentCity));
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment