1

I am using LinqToExcel for sorting of data. I want to save sorted data back to excel. For that is there any function in LinqToExcel

Prasad Joshi
  • 471
  • 4
  • 12

1 Answers1

1

As mentioned on the LinqToExcel project page, it is designed for querying data, not modifying data. So no, there is not anything built into LinqToExcel to allow this.

To modify an Excel sheet, you will need to use either the Visual Studio Tools for Office (VSTO), Open Office XML, or a third-party library that wraps one of these.

GalacticCowboy
  • 11,663
  • 2
  • 41
  • 66
  • Okay Thanks.. I am using EPPlus to do excel operations. I will check by using both LinqToExcel for sorting data and for updating excel and let you know. – Prasad Joshi Aug 10 '16 at 02:30