Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a problem:

public class TDocumentation
{
   public XmlElement Summary { get; set; }

   public XmlElement LongDescription { get; set; }

   public XmlAttribute[] AnyAttr { get; set; }
}

...and:

public class ProxieTDocumentation
{
    public XmlElement Summary { get; set; }

    ......
}


Mapper.CreateMap<Proxies.TDocumentation, TDocumentation>()

...throws:

----> System.ArgumentException : Type "System.Xml.XmlElement" does not have a default constructor automapper

How I can make a mapping on another?

share|improve this question
What version of Automapper? I just tried this with 2.0 and I didn't get the exception (using the class definitions you posted). – Patrick Steele Apr 2 '12 at 18:39
thanks for the answer, i use version 2.1.265.0 – D E Apr 7 '12 at 10:56

1 Answer

up vote 1 down vote accepted

I resolve thie promleb: Mapper.CreateMap().ConvertUsing(item => item != null ? item.Clone() as XmlElement : null);

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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