Is there an easy way to take data from a Deedle dataframe and insert it into an existing SQL Server table using C#?
Asked
Active
Viewed 414 times
1 Answers
2
There is a ToDataTable
extension method. available on data frames.
This gives you a fairly simple way to get all the data from a data frame and it should not be hard to find code samples showing how to insert data from a DataTable
into SQL database.
- One SO answer showing this is: Insert entire DataTable into database at once instead of row by row?

Community
- 1
- 1

Tomas Petricek
- 240,744
- 19
- 378
- 553