paulyoder / LinqToExcel

Use LINQ to retrieve data from spreadsheets and csv files

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Data edit in excel document

olegbevz opened this issue · comments

Hello gents,

I am a great fan of LinqToExcel project. The library simplifies work with excel files significantly. But unfortunately in my project I need also to edit excel files.
Do you have any plans to add excel edit support to the library?
As I understand standard OledbConnection is used in background. Thus INSERT statements can be executed against the excel document. Right?

Although the back-end database can do INSERTs, Linq can only query data. Doing insertions/edits would require a completely different mechanism. You can use an OledbConnection directly to do any inserts you need.