What’s Automapper for? How will it help me with my domain and controller layer (asp.net mvc)
|
|
Maybe an example will help here... Let's say you have a nicely-normalized database schema like this: Orders (OrderID, CustomerID, OrderDate) Customers (CustomerID, Name) OrderDetails (OrderDetID, OrderID, ProductID, Qty) Products (ProductID, ProductName, UnitPrice) And let's say you're using a nice O/R mapper that hands you back a well-organized domain model: OrderDetail +--ID +--Order |--+--Date |--+--Customer |-----+--ID |-----+--Name +--Product |--+--ID |--+--Name |--+--UnitPrice +--Qty Now you're given a requirement to display everything that's been ordered in the last month. You want to bind this to a flat grid, so you dutifully write a flat class to bind:
That was pretty painless so far, but what now? How do we turn a bunch of You might put a constructor on
There. We've just taken what would otherwise have been a disgusting mess of pointless mapping code and reduced it into three lines (really just two for the actual mapping). Does that help explain the purpose? |
|||
|
|
If you have an object of one type and you want to populate the properties of an object of another type using properties from the first type, you have two choices:
AutoMapper is an example of 2. The most common use is to flatten models into a data transfer objects (or, in general, mapping across layer boundaries). What's very nice about AutoMapper is that for common scenarios you don't have to do any configuring (convention over configuration). |
|||
|
|