I just started using Auto Mapper and it is awesome :) I have however run into some trouble with the following scenario. I need to pass a value from my controller (using asp.net mvc) to either a custo
I have something like this public class ProductViewModel { public int SelectedProductId { get; set; } public string ProductName {get; set;}
I have a string that is a valid date but it is a string and it needs to be a string. However when I try to auto map it to a datetime it throws an exception
I am wondering how I can auto map this or if it can be done at all(I am thinking not but I just wanted to check).
I have following doimain objects: public class ComponentType { public int ComponentTypeID { get; set; } public string Component_Type { get; set; }
I\'m wanting to开发者_Go百科 know if it\'s a bad design to use repositories when converting DTOs to their domain object counterpart.
I would like to map an ienumerable t开发者_如何学运维o a bool using automapper. Is this possible, the bool would be true if items exist in the ienumerable and false otherwise.Have you tried Any()?
I\'m writing unit tests for ASP.NET MVC controller methods. Those controllers have a dependency on IMapper - an interface I\'ve created to abstract AutoMapper, passed in via constructor injection usi
Why is UseValue only executed once? I need to call the TeamRepository for each request. How can I achieve this?
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references,or expertise, but this question will likely solicit debate, a