F# is a succinct, expressive and efficient functional and object-oriented language for .NET which helps you write simple code to solve complex problems.
7
votes
0answers
144 views
F# 3 SQL Database using Type Provider/ groupBy on multiple columns
Evaluating F# 3 for using it Type Provider feature as a replacement of writing T/SQL or stored procedures.
let summary =
query { for dsm in db.DistributorSalesMaster do
join c in ...
4
votes
0answers
135 views
Missing targeting pack for “.NETFramework,Version=v4.0,Profile=Profile47”
To help debug some problems I've been having compiling the portable version of FSharp.Core from the f# source code (Using a custom version of FSharp.Core.dll), I created some project files to be able ...
4
votes
0answers
470 views
Compiling F# code on Ubuntu 12.04 using Monodevelop
I followed the instructions here for installing Monodevelop with F# support on Ubuntu, however when I open Monodevelop and try to compile a simple F# program I get the message:
Error: Framework ...
4
votes
0answers
310 views
F# 'modular' scripting
What is the recommended way to load+reload fsx files? Just experimenting... yes yes right language right job ect ect..
I love how the following can be done in FSI:
#load "script.fsx";
open Script
...
3
votes
0answers
104 views
how to represent functional language debug information in llvm source level debug information?
I am developing a llvm frontend for a language based on F#, a functional language. Well, the functional language matches the concept of value, not variable. F# also support variable by so called ...
3
votes
0answers
114 views
Debugging F# in Xamarin Studio 4.0.3 throws an error
I have installed Xamarin Studio 4.0.1 on Windows 8 x64 from http://monodevelop.com/Download . When I ran Xamarin, it got updated to 4.0.3. I have installed F# bindings. I have created new F# console ...
3
votes
0answers
78 views
Authenticated http request fails in FSI only
I'm making an authenticated request like this:
let url = "https://datafeeds.networkrail.co.uk/ntrod/CifFileAuthenticate?type=CIF_ALL_FULL_DAILY&day=toc-full"
let auth = "Basic " + (username + ":" ...
3
votes
0answers
104 views
Assembly redirect in multiple environment / eg, for F# 4.0.0.0
I received a new machine and thought plugging in some machine wide redirect would just work for my FsCheck tests would work like in my previous machine.
That was not the case, and I received a ...
3
votes
0answers
138 views
EF saving with F# and ASP.NET MVC
Based on the great samples from Daniel Mohl and his book: https://github.com/dmohl/fs-web-cloud-mobile
I have and ASP.NET MVC application in F# with the online template for it. So far I have my ...
3
votes
0answers
147 views
Intellisense Errors and #I with Script Files
Are there any known issues with Intellisense and the use of #I combined with #r when using script files?
What I am noticing is that if I reference an assembly using #r and the full path I get ...
3
votes
0answers
226 views
How to make an F# project work with the object browser
I have used the sample F# Empty WPF project and pulled in Paul Bett's ReactiveUI project via Nuget. Normally when I press (shift-f2) on an identifier in C#/VB.Net it takes me to the object browser so ...
3
votes
0answers
196 views
How can I build WebSharper on Mono 3.0 on Mac?
WebSharper looks interesting, and Mono 3.0 is just out with F# 3.0. Apparently xbuild can build some MSBuild projects. Straightforward attempt at building a WebSharper clone on mono fails since ...
3
votes
0answers
224 views
How to handle left recursion in FParsec
My languages uses s-expressions with one additional feature - a dot operator for accessing elements from an array or struct.
Currently, my parser works on this code using the access operator -
; ...
3
votes
0answers
138 views
MbUnit under Linux, used within an F# project?
I tried asking this on the galio-users list, but the question failed to appear (google groups says the post was successful). I suppose the list might be moderated by someone who does not read his ...
2
votes
0answers
97 views
Unable to upcast from CloudBlockBlob to CloudBlob
I must be missing something obvious here, but I find myself unable to do an upcast which I thought was legal. I am trying to upload data to Blob storage in Azure, and would like to use the method ...