Given the following CSV file:
Id,Name
1,"Joel"
2,"Adam"
3,"Ryan"
4,"Matt"
You can read the data with the following script:
#r "FSharp.Data.dll"
open FSharp.Data
type PeopleDB = CsvProvider<"people.csv">
let people = Pe...