Skip to content

Instantly share code, notes, and snippets.

@gmartinezsan
Last active April 17, 2018 04:08
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 gmartinezsan/91dd32bdfd62fec6ceb78bb1ed0b45fc to your computer and use it in GitHub Desktop.
Save gmartinezsan/91dd32bdfd62fec6ceb78bb1ed0b45fc to your computer and use it in GitHub Desktop.
using AutoMapper;
using BooksWebApi.Entities;
namespace BooksWebApi.Models
{
public class BookMappingProfile : Profile
{
public BookMappingProfile()
{
CreateMap<Book, BookModel>()
.ForMember(b => b.category, opt => opt.ResolveUsing(c => c.Category.Description))
.ReverseMap();
CreateMap<Book, UpdateBookModel>()
.ReverseMap();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment