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 = PeopleDB.Load("people.csv") // this can be a URL
let joel = people.Rows |> Seq.head
printfn "Name: %s, Id: %i" joel.Name joel.Id