How to update a table in database using LINQ in F#?
- by sudaly
I have seen plenty of examples on how to query the database but nothing on how to update records. Below is the simple code that I wrote to retrieve a table, but can someone explain me how can I modify a field, say lastActiveDate, and update the table on the database
Thank you,
suday
open System
open Microsoft.FSharp.Linq
let connString =…