I have a couple questions about AutoMapper.
1) I have a class named Category and a View Model named CategoryViewModel. Do I need to create mappings for each direction?
Mapper.CreateMap(Of Category, CategoryViewModel)
Mapper.CreateMap(Of CategoryViewModel, Category)
2) How do I map collections? I have a CategoryListViewModel that has a single property of IEnumberable(Of CategoryViewModel). I wan to populate those from my service that return IQueryable(Of Category)?
Thanks!!