i have two datatable in Typed DataSet named tblA and tblB
note: both the table is having different data structure.
let me know how to merge two untyped dataset to the above typed dataset.
Dear Tony,
Thanks for your effort.
But please understand my question.
I have 2 DataTable in Typed DataSet
DataTable names are: tblA and tblB
Now i have to merge Untyped Dataset one by one.
i need to map and merge.
Like:
UnTypedDATASET.TABLE("TABLEONE")
NOW LET ME KNOW HOW TO MERGE THIS WITH TYPEDDATASET.TABLE("tblA")
i did like this: TypedDataSet.merge(DS.table("tblA"))
but its mapping to tblB instead of tblA
Expecting your valuable help.
Got a solution to merge UNTYPED DATASET WITH TYPED DATASET
Typed_DS.Tables("tblA").Merge(UnTyped_DS.Tables("tablename"), True, MissingSchemaAction.Ignore)
Regards, Thiru.
myTypedDataset.Merge(myUntypedDataset)
Not being funny but this is two second google.
I have 2 DataTable in Typed DataSet DataTable names are: tblA and tblB
Now i have to merge Untyped Dataset one by one.
i need to map and merge. Like:
UnTypedDATASET.TABLE("TABLEONE")
NOW LET ME KNOW HOW TO MERGE THIS WITH TYPEDDATASET.TABLE("tblA")
i did like this: TypedDataSet.merge(DS.table("tblA")) but its mapping to tblB instead of tblA
Expecting your valuable help - Sensa 2012-04-05 21:24