Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save superwalnut/7e14ba6343db67fbc48ca1ec59022d5d to your computer and use it in GitHub Desktop.
Save superwalnut/7e14ba6343db67fbc48ca1ec59022d5d to your computer and use it in GitHub Desktop.
code block for create-dotnet-core-console-app-with-autofac-dependency-injection-7
public class MyAutoMapperProfile : Profile
{
public MyAutoMapperProfile()
{
CreateMap<Foo, FooDto>();
// Use CreateMap... Etc.. here (Profile methods are the same as configuration methods)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment