f# - CSV Type provider -
i trying find easy example or introduction csv type provider. followed link me started. have visual studio 2012 students edition , while documentation says f# 3.0 has csv type provider not able find it. trying use type provider local csv file. see csv typeprovider mentioned not exist @ all. since given examples don't compile looked around , used load odata services :
#r "fsharp.data.typeproviders" ///loading stackoverflow odata type provider type stackoverflow = microsoft.fsharp.data.typeproviders.odataservice<"http://data.stackexchange.com/stackoverflow/atom">
so bit different mentioned in example page above. not able see csv type provider. use visual studio ide list type providers , csv not listed. tried updating packages using nuget , still persists. can point right documentation on how work csv type provider , right updated links simple example found?
fsharp.data isn't built-in library, either need use nuget or manually download package. see here more information on (and how use it).
if manually download project can put wherever want , use file path reference #r
. path relative project, use __source_directory__
symbol, otherwise can use absolute file path of .dll.
after referencing dll, still need open namespace, need have open fsharp.data
after reference dll.
Comments
Post a Comment