AutoMapper in MVC
What is AutoMapper? AutoMapper is an object-object mapper. Object-object mapping works by transforming an input object of one type into an output object of a different type. Why AutoMapper? Suppose if our input object contains 20 properties then we need to write 20 lines of code for converting input object to destination object.
Read more