I am trying to map an id to object with AutoMapper and I have been trying to figure this out for two days.Any help would be appreciated.
Having a problem with a mapping VPerson vPerson = new VPerson() { Id = 2, Lastname = \"Hansen1\", Name = \"Morten1\" };
So I have a View Model like this: Public Class CategoryViewModel Public Property ID As Integer Public Property Name As String
Okay so I have an issue at the moment which is either down to AutoMapper, my NHibernate query or Domain/DTO design.
After working with AutoMapper I came across ValueInjecter on this site. I am trying it out but I am stuck on what is probably a very simple scenario.
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?
I am new to automapper, so I may be attacking this the wrong way.I am working on an mvc app and I want to use automapper to map between my domain models and my view models.My view is taking an IList t
I have a linq to sql object that has some references to some other tables I am trying to map it to a vm but nothing ever gets captures.
NOTE: The scenario is using 2 entity framework models to sync data between 2 databases, but I\'d imag开发者_StackOverflowine this is applicable to other scenarios.One could try tackling this on the EF
I have been working on a new MVC application that utilizies EF4, POCO Domain Objects and the Repository <--> Service Layer开发者_开发百科.