The type-providers tag has no wiki summary.
18
votes
2answers
1k views
F# type providers, how do they work
I don't quite get type providers after watching Don Symes's pdc video
http://player.microsoftpdc.com/Session/04092962-4ed1-42c6-be07-203d42115274
Do I understand this correctly. You can get ready ...
12
votes
2answers
742 views
F# type provider - “only return generated types”
Trying to encode type-level peano numbers using a type provider:
namespace TypeProviderPlayground
open System
open Microsoft.FSharp.Core.CompilerServices
open System.Runtime.CompilerServices
...
5
votes
1answer
134 views
What happens when type providers change in F#?
After watching Channel 9's video on F# Type Providers, I'm wondering about data schema changes. Don touched on this a little bit at the end, but I'm looking for more details.
The demo made it look ...
4
votes
1answer
246 views
F# 3 Type Provider for Entity Framework
Would it be possible to create a type provider in F# 3.0 for Entity Framework, so that I can get neat IntelliSense like with the SqlDataConnection (included in Microsoft.FSharp.Data.TypeProviders) but ...
3
votes
1answer
143 views
How do F# Type Providers check types at compile time
So i'm am learning F#, and looked at this:
F# type providers, how do they work
and this:
http://msdn.microsoft.com/en-us/library/hh361033(v=vs.110).aspx
I'm not very fluent in F#, but my (probably ...
3
votes
0answers
268 views
F# 3.0 Type Providers for science [closed]
It seems that F# Type Providers are the leading feature of F# 3.0. My question is simple, what should I use it for? I am scientifically oriented (engineering). The only examples I have seen so far are ...
3
votes
2answers
248 views
Will F# type providers provide a good base for implementing an object-relational mapping?
Judging from the information I have read about type providers so far, I wonder if they could be used to implement a nice ORM for F#.
I imagine that database rows could be represented by objects with ...
2
votes
2answers
167 views
Project ideas for FSharp Type Providers? [closed]
I am planning to build a type provider as an open source project.
I am considering a building a more fluent api for .NET configuration via the type provider pattern, wrapping ConfigurationManager, ...
2
votes
1answer
103 views
Type provider: How to regenerate?
How would you make the LINQ-TO-SQL type provider, generate or/and regenerate the classes?
I've just added a new table to my database, and the type provider can't figure that out. I've tried to delete ...
0
votes
3answers
200 views
F# Type Providers and REST apis
Is there any reason why the default plug and play F# type providers to web services is soap based wsdl? Is it because of a lack of formal contracts in REST? Such that each REST api may differ ...