How to save solution of differential equation as dataframe

Hello,
I have generated a solution of a differential equation using DifferentialEquations. I saved the solution in the object soln. Is it possible to save it as a tab-delimited file (or csv) so I can open it again as a dataframe in another session?
I tried with BSON, but this saves the object, not a dataframe…

using DataFrames
DataFrame(soln)
3 Likes