1

Is there an easy way to take data from a Deedle dataframe and insert it into an existing SQL Server table using C#?

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
Gaspare Bonventre
  • 1,134
  • 11
  • 19

1 Answers1

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.

Community
  • 1
  • 1
Tomas Petricek
  • 240,744
  • 19
  • 378
  • 553