↧
Answer by Tomas Petricek for How do I create an F# Type Provider that can be...
The reason why standard type providers (for OData, LINQ to SQL and WSDL) work with C# is that they generate real .NET types behind the cover. This is called generative type provider. In fact, they...
View ArticleHow do I create an F# Type Provider that can be used from C#?
If I use the F# Type Providers from the assembly FSharp.Data.TypeProviders 4.3.0.0, I am able to create types in a very simple F# library. I am then able to use those types without any dependency on...
View Article