views:

32

answers:

2

Can I use AutoMapper to map from data in an XElement to my own type ? How ?

+1  A: 

Yes you can but in any case you will end up writing a function that does the conversion from the non strongly typed XElement to your strongly typed class, so AutoMapper wouldn't bring much value here. You could use ConvertUsing or write a custom ITypeConverter.

Darin Dimitrov
+1  A: 

you can use ValueInjecter for this, look at this link, it's something similar:

http://valueinjecter.codeplex.com/Thread/View.aspx?ThreadId=218448

Omu