Tagged Questions

F# 3.0 is a new version of F# with the addition of F# Information Rich Programming, consisting of F# LINQ Queries, the F# Type Provider mechanism, and a set of built-in type providers for enterprise and web data standards. For latest news about F# 3.0, please visit F# Team blog and their F# 3.0 ...

learn more… | top users | synonyms

11
votes
3answers
521 views

Is there any single-article F# 3.0 overview?

When LINQ first came out, I remember Microsoft used to post wonderful introductory papers on C# 3.0, DLinq and XLinq (known as LINQ to SQL and LINQ to XML today). I'm looking for some introductory ...
4
votes
1answer
247 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 ...
1
vote
1answer
118 views

Azure and F# 3.0 Type Providers

Do F# 3.0 Type Providers work with SQL Azure? I'm getting an error while trying. Wondering if there are any known issues with this.
1
vote
1answer
112 views

source code for F# 3.0 talk on BUILD

is there a dowload link for the source code in Don Syme's F#3.0 talk on //build/?
1
vote
1answer
126 views

How to compile a quotation into a public static method of a new type in F#

I am playing with type providers and I am trying to compile a quotation into a public static method of a new generated type. Here is what I have: let CreateType<'i> name methodName quotation = ...
0
votes
1answer
83 views

Internal F# error with F# 3.0 in Visual Studio 11 Developer Preview?

I have installed the Developer Preview of the Visual Studio 11 along with F# 3.0. If I open a F# project it is opened with no warnings or errors and FSI starts normally, but as long as I start testing ...
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 ...