I would like to access SQL server with F#
It doesn't seem like there is any way to generate models using the Entity Framework. I have seen some answers on S.O. but they appear to be quite generic. I would ideally like to select or update using strongly typed objects.
Ideas?
asked Feb 16, 2021 at 6:39
1 Answer 1
I recommend FSharp.Data.SqlClient. SqlCommandProvider allows you to write strongly-typed selects/updates.
answered Feb 16, 2021 at 12:11
lang-ml