Guest User

Untitled

a guest
Jan 16th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. var myPoco = new MyPoco();
  2. var proxy = repository.Load<MyDomainObject>(id);
  3. Mapper.Map(myPoco, proxy);
  4.  
  5. Missing type map configuration or unsupported mapping.
  6.  
  7. MyPoco-> MyDomainObjectProxy
  8.  
  9. var myDomainObj = Mapper.Map<MyPoco, MyDomainObject>(myPoco);
Add Comment
Please, Sign In to add comment