FSharp.Data icon indicating copy to clipboard operation
FSharp.Data copied to clipboard

F# Data: Library for Data Access

Results 118 FSharp.Data issues
Sort by recently updated
recently updated
newest added

I am working on a Xamarin client project that is a connecting to a REST API and scrapping missing API data from their own website (2020+ on getting new APIs...

JsonProvider doesn't seem to care if non-optional fields are completely missing, it happily infers them as an empty string. ```fs type MyType = JsonProvider [] let ``json test`` () =...

In FSharp.Data 3.0.0-beta4, inference for a JSON with a numeric array field worked properly. When attempting to upgrade to 3.0.0, however, the inference breaks, and the inferred type is `int...

Related to https://github.com/nojaf/jason-to-thoth/issues/6#issuecomment-451153984 Should an empty string be of type null? Is this a bug of does this work by design?

I had a thought the other day (OK a while ago), that it would be nice to work with a Markdown Table as if it was CSV Data. ``` |...

When stopping at a breakpoint, it doesn't seem possible to inspect the members generated by XmlProvider. The only visible members are `XElement` and `_Print`. Is this intentional? Everything's fine statically,...

in the [HTML Type Provider doc page](http://fsharp.github.io/FSharp.Data/library/HtmlProvider.html) the link to MarketDepth.htm file points to a non existing file

I'm trying to create script that parse some html to another format. ```fsharp #r "./packages/FSharp.Data/lib/net45/FSharp.Data.dll" open FSharp.Data open System let input = "Test one twoonetwothree" let html = HtmlNode.Parse input...

type-review-existing-functionality

If you try to follow the [example](http://fsharp.github.io/FSharp.Data/library/CsvProvider.html) in the `CsvProvider` documentation, it is not working currently. ```fsharp // Download the stock prices let msft = Stocks.Load("http://www.google.com/finance/historical?q=MSFT&output=csv") ``` Fails here because...

type-docs
up-for-grabs
good first issue

When using `CsvFile.Load` with `Console.OpenStandardInput()` as input, only the first line is read in the CsvFile. When a file is piped into stdin, all lines are considered. Here is a...

type-bug
up-for-grabs