views:

18

answers:

1

Hi,

i am trying to copy data from a standard Dataset to a Type Dataset (XSD) of same table structure. i want to use Automapper to do that one. So how can i do that using automapper?
A: 

AutoMapper doesn't support this. You'll have to code this by hand. However, if you can extract some conventions, you may be able to use the DataSet metadata (DataColumn etc.) to automatically do this, without coding each table/column by hand.

Jimmy Bogard