I\'m using LINQ to compare two DataSets with each other to create new rows and update existing. I\'ve noticed that the complete comparison lasts ~1,5 hours and only one of t
There are 3 points worth investigating further,
See if you could use LinqDataview to provide better performance.
I dont think you will gain an advantage of PLinq while doing insertion. Look at this answer for more details.
Hope that helps. Please do ask if you need clarification on any of the above points.