Select
method is used to project each element of a sequence into a new form, i.e., it can be used to map a collection of one type to a collection of another type. In this article, I’ll show you a simple approach that will allow you to reuse the code used in the Select
method.
Table of Contents
The Problem
Consider the following model:
Let’s suppose that you have a services layer, so you don’t want to expose your domain objects directly to the client applications. Instead, you create a set of data contracts (or DTOs, if you prefer):
At some stage, you’ll have to convert those Domain
objects to data contracts. This is a common way of doing it:
var details = repository.All<Album>().Select(album => new AlbumDetail {
AlbumId = album.AlbumId,
Price = album.Price,
Title = album.Title,
ArtistId = album.ArtistId,
GenreId = album.GenreId,
ArtistName = (album.Artist == null) ? null : album.Artist.Name,
GenreName = (album.Genre == null) ? null : album.Genre.Name
});
There is a problem with this approach – if you need to query the same collection, but using different criteria, you have to duplicate the code inside the Select
method.
Solution 1 – Creating a Method for the Mapping
In order to reuse the code, we can create a method that converts Album
objects (Domain
) to data contract objects:
private static AlbumSummary CreateAlbumSummary(Album album)
{
return new AlbumSummary {
AlbumId = album.AlbumId,
Title = album.Title,
ArtistName = (album.Artist == null) ? null : album.Artist.Name
};
}
private static AlbumDetail CreateAlbumDetail(Album album)
{
return new AlbumDetail {
AlbumId = album.AlbumId,
Price = album.Price,
Title = album.Title,
ArtistId = album.ArtistId,
GenreId = album.GenreId,
ArtistName = (album.Artist == null) ? null : album.Artist.Name,
GenreName = (album.Genre == null) ? null : album.Genre.Name
};
}
Using the Code
var albums = Albums.Select(CreateAlbumDetail);
var albumsByGenre = Albums.Where(x => x.GenreId == genreId).Select(CreateAlbumDetail);
var albums2 = Albums.Select(x => CreateAlbumDetail(x));
var albumsByGenre2 = Albums.Where(x => x.GenreId == genreId).Select(x => CreateAlbumDetail(x));
Solution 2 – Creating a Generic ObjectMapper Object
The previous solution solves the code reusability problem, but there’s still a tight coupling between components. Abstractions should be used to implement loose coupling between components – in this case, to abstract the mapping code.
Step 1: Define a contract (interface) with a method that converts one object of type TSource
to an object of type TDestination
:
public interface IObjectMapper
{
TDestination Map<TSource, TDestination>(TSource source);
}
Step 2: Create a class that implements IObjectMapper
(click to expand):
public class ObjectMapper : IObjectMapper
{
private Dictionary<Type, Func<object, object>> Mappers =
new Dictionary<Type, Func<object, object>>
{
{ typeof(Tuple<Album, AlbumDetail>), CreateAlbumDetail },
{ typeof(Tuple<Album, AlbumSummary>), CreateAlbumSummary }
};
public TDestination Map<TSource, TDestination>(TSource source)
{
if(source == null)
return default(TDestination);
Func<object, object> mapper = null;
Type key = typeof(Tuple<TSource, TDestination>);
if(Mappers.TryGetValue(key, out mapper))
{
var newObject = mapper(source);
return (TDestination) newObject;
}
string errorMessage = string.Format("Invalid mapping (Source: {0}, Destination: {1})";,
typeof(TSource).FullName,
typeof(TDestination).FullName);
throw new InvalidOperationException(errorMessage);
}
private static object CreateAlbumDetail(object source)
{
var album = source as Album;
return new AlbumDetail {
AlbumId = album.AlbumId,
Price = album.Price,
Title = album.Title,
ArtistId = album.ArtistId,
GenreId = album.GenreId,
ArtistName = (album.Artist == null) ? null : album.Artist.Name,
GenreName = (album.Genre == null) ? null : album.Genre.Name
};
}
private static object CreateAlbumSummary(object source)
{
var album = source as Album;
return new AlbumSummary {
AlbumId = album.AlbumId,
Title = album.Title,
ArtistName = (album.Artist == null) ? null : album.Artist.Name
};
}
}
Example 1: Using LINQ
Using the mapper in a LINQ expression – convert an Album
collection to an AlbumSummary
collection:
IObjectMapper mapper = new ObjectMapper();
IEnumerable<AlbumSummary> summaries = repository.All<Album>()
.Select(mapper.Map<Album, AlbumSummary>);
Example 1: Mapping a Single Object
Using the mapper for a single object:
var album = new Album {
AlbumId = 1,
Price = 10.0m,
Title = "The Dreamer",
Artist = new Artist { ArtistId = 1, Name = "José James" },
Genre = new Genre { GenreId = 1, Name = "Jazz" }
};
IObjectMapper mapper = new ObjectMapper();
AlbumDetail albumDetail = mapper.Map<Album, AlbumDetail>(album);
Unit Testing
Some NUnit tests:
[Test]
public void
Given_a_non_existing_mapping_when_mapping_object_then_should_throw_InvalidOperationException()
{
IObjectMapper mapper = new ObjectMapper();
var albumDetail = new AlbumDetail();
Assert.Throws<InvalidOperationException>(() =>
mapper.Map<AlbumDetail, AlbumSummary>(albumDetail)
);
}
[Test]
public void Given_an_album_when_mapping_to_album_summary_should_equals_expected_album_summary()
{
IObjectMapper mapper = new ObjectMapper();
var album = new Album {
AlbumId = 4,
Price = 10.0m,
Title = "Heritage",
Artist = new Artist { ArtistId = 4, Name = "Opeth" },
Genre = new Genre { GenreId = 4, Name = "Metal" }
};
var expectedAlbumSummary = new AlbumSummary {
AlbumId = 4,
ArtistName = "Opeth",
Title = "Heritage"
};
AlbumSummary albumSummary = mapper.Map<Album, AlbumSummary>(album);
Assert.AreEqual(albumSummary, expectedAlbumSummary);
}
Final Thoughts
In this article, you learned how to reuse the code used in the Select
method, and how you can use that code to map single objects. But writing mapping code is tedious and time consuming. There are mapping tools out there that can make your life easier – AutoMapper is one of them. I’ve used it in the past and I definitely recommend it. So, why use Automapper? Quoting their website:
“What makes AutoMapper interesting is that it provides some interesting conventions to take the dirty work out of figuring out how to map type A to type B. As long as type B follows AutoMapper’s established convention, almost zero configuration is needed to map two types”
“Mapping code is boring. Testing mapping code is even more boring. AutoMapper provides simple configuration of types, as well as simple testing of mappings.”
References