Zoeken…
Gebruik van de CSV Type Provider
Gezien het volgende CSV-bestand:
Id,Name
1,"Joel"
2,"Adam"
3,"Ryan"
4,"Matt"
U kunt de gegevens lezen met het volgende 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
De WMI Type Provider gebruiken
Met de WMI-typeprovider kunt u WMI-services opvragen met krachtig typen.
Om de resultaten van een WMI-query uit te voeren als JSON,
open FSharp.Management
open Newtonsoft.Json
// `Local` is based off of the WMI available at localhost.
type Local = WmiProvider<"localhost">
let data =
[for d in Local.GetDataContext().Win32_DiskDrive -> d.Name, d.Size]
printfn "%A" (JsonConvert.SerializeObject data)
Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow