enter image description here

Code before the changes:

List<ProductBrandModel> model = brands.Select(item => Mapper.Map<ProductBrand, ProductBrandModel>(item)).ToList();

Code after the improvement:

List<ProductBrandModel> model = brands.Select(Mapper.Map<ProductBrand, ProductBrandModel>).ToList();

What is this doing? Is it implicitly running that mapping on every item in the brands collection?

link|improve this question

80% accept rate
feedback

2 Answers

up vote 5 down vote accepted

Since you're directly passing the parameter of the lambda expression to the Mapper.Map method, it is exactly equivalent to specifying this method directly as the projection for Select. The signature of Mapper.Map is compatible with the Func<TSource, TResult> delegate, so R# suggests to use the method group directly rather than a lambda expression.

link|improve this answer
You have three upvotes but I have more questions. :) I understand the signature is <TSource, TResult> but what is being projected when I use the improved code? Does the .Select burp up each ProductBrand object and Mapper.Map assumes that bit is the TSource? – Sergio Tapia Aug 24 '11 at 21:03
Well, TSource is already known, since brands is a collection of ProductBrand. The compiler infers TResult from the return type of Mapper.Map. – Thomas Levesque Aug 24 '11 at 21:08
feedback

The first line creates a method that immediately calls the Mapper.Map function. This is unnecessary since the Mapper.Map method matches the expected definition of Select and can call Mapper.Map directly. Resharper changes it so that only 1 method is called and the extra method is not generated by the compiler.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.