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

Hello, Today I started getting this error when running a script. `Project.fsproj.fsx(12,1): error FS3033: The type provider 'ProviderImplementation.JsonProvider' reported an error: The design-time type 'FSharp.Data.Runtime.StructuralInference+InferenceMode' utilized by a type provider...

Hello, I'm trying to use CsvProvider with specified encoding, so the definition looks like this: ```fsharp type TradeRows = CsvProvider ``` but I'm getting following error during build: > No...

The JsonAnonymizer.fsx sample uses the public `inferPrimitiveType` API. However do we seriously want this API public? I get that making the inference engines used by the type providers available is...

The tutorial video on https://fsprojects.github.io/FSharp.Data/ is broken. It seems like the video disappeared from Channel9 (iframe source: https://channel9.msdn.com/posts/Understanding-the-World-with-F/player). At least I couldn't find it back with a simple search :/...

When a .xsd file is used to create the XML TypeProvider type from a .xsd and when the .xsd uses `xs:dateTime` then if when the date is parsed into a...

This has been noted many years ago with JSON, I assume that does the same thing. ``` type RawXml3 = XmlProvider let t = RawXml3.Parse "file.xml" match t.Vehicle.Bicycle, t.Vehicle.Car with...

```f# #r "nuget: FSharp.Data" type TP = FSharp.Data.CsvProvider< @"C:\Temp\multiline.csv", InferRows = 2> ``` [multiline.csv](https://github.com/fsprojects/FSharp.Data/files/8776401/multiline.csv): ```csv f1,f2 "multi- line field",2 ``` Error: ``` Error: input.fsx (1,11)-(1,76) typecheck error The type provider...

### Description I am using this library in blazor wasm application, but this library's bundle size is 1008kb which is a lot for a web application. I also created similar...

This was already proposed in #93, but given how much the landscape has changed since 2013, I thought it better to create a new issue. The specific reason why I'm...

type-new-feature
good first issue

Is there some reason getting the inner text of a script element is not allowed? I'm working on a webscraping project where I need need to obtain a cookie by...