I'm trying to create a custom mapping with AutoMapper, but I can't use 3.0 syntax with lambdas. How would one convert this 3.0 code into 2.0 ?

Mapper.CreateMap<MyClass, MyDto>()
 .ForMember(dest => dest.Name, opt => opt.MapFrom(src => src.CompanyName))

Edit:

Since there was no better solution, we are now using vs2008 on one workstation to make these mappings and build a dll. I hope it won't be long until we upgrade to vs2010.

link|improve this question

42% accept rate
feedback

1 Answer

up vote 3 down vote accepted

EDIT: Jimmy has mentioned in the comments that AutoMapper uses expression trees. That doesn't immediately rule out the possibility of using .NET 2.0 (you can use Mono's implementation of System.Core), but if you can't even using C# 3 you'll have to construct all the expression trees manually, which it going to be a huge pain.

Are you absolutely prohibited from using .NET 3.5 and C# 3?

link|improve this answer
I'm working with Visual Studio 2005 – Morri Feb 12 '10 at 11:14
It used to be possible to use LINQ in VS2005 - see c-sharpcorner.com/UploadFile/nsatheeshk/Linq06302006030119AM/… (not sure if this is still supported though) – Steve Haigh Feb 12 '10 at 11:23
I'm getting stuck on delegate(Bar opt) { return opt.MapFrom(... What is Bar, and howcome it has .MapFrom method? – Morri Feb 12 '10 at 11:44
@Morri: Bar would be whatever the type of "opt" is in the original lambda expression. – Jon Skeet Feb 12 '10 at 11:47
1  
@Jon AutoMapper uses expressions for strongly-typed reflection, so you can't go the anonymous delegate route. The ForMember method accepts an Expression<Func<TSource, TMember>>, not Func<TSource, TMember>. – Jimmy Bogard Feb 18 '10 at 17:34
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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