Faster (more scalable) DataSet.Merge?

后端 未结 5 881
孤街浪徒
孤街浪徒 2021-01-25 11:52

We use strongly typed DataSets in our application. When importing data we use the convenient DataSet.Merge() operation to copy DataRows from one DataSet to another.

5条回答
  •  忘了有多久
    2021-01-25 12:42

    The best merging algorithm I know is Sort-Merge if your input datasets are sorted by the same attribute. But I do not know C# so well to say if it is possible to force ADO object to use this algorithm.

提交回复
热议问题