A convention-based object-to-object mapper and transformer for .NET
I'm using Automapper and I have the following scenario: Class OrderModel has a property called 'ProductName' that isn't in the …
c# model viewmodel automapper object-object-mappingEntity Model public partial class Categoies { public Categoies() { this.Posts = new HashSet<Posts>(); } public int Id { get; set; } …
asp.net-mvc automapperI'm relatively new at .NET, and I decided to tackle .NET Core instead of learning the "old ways". I found …
c# asp.net-core automapperI have the classes: public class Person{ /* Props here */ } public class PersonViewModel { /* Props here */ } Then the list: List<Person&…
asp.net-mvc automapperI'm using AutoMapper in an ASP.NET MVC application. I was told that I should move the AutoMapper.CreateMap elsewhere …
asp.net-mvc design-patterns configuration automapperI am having a hard time to understand how to map certain objects. Please answer some questions about this simple …
c# wcf linq-to-entities automapperI am trying to set up AutoMapper to convert from Entity to DTO. I know I'm supposed to be using .…
.net automapperIs there a way to tell AutoMapper to ignore all of the properties except the ones which are mapped explicitly? …
.net automapperI have these classes: public class Person { public int Id{ get; set ;} public string FirstName{ get; set ;} public string LastName{ …
c# automapper automapper-2I'm trying to add AutoMapper as a dependency to a project using NuGet on Visual Studio Premium 2012, but it fails. …
c# visual-studio-2012 nuget automapper