F# 21 March 2021 Announcing EFCore.FSharp Announcing the first alpha release of F# support for Entity Framework Core 5.0.3
F# 20 July 2020 WTF is... a Computation Expression? ...and why should I care? Every time computation expressions in F# are discussed it's only a matter of time before the dreaded M-word is mentioned.
F# 30 June 2020 FsCheck: An introduction We've all heard of unit testing and some of us have even been known to practice it. It has a simple premise * Have a method
F# 26 June 2020 MiniScaffold, setting up a new F# project the easy way Setting up a new project can be a pain. Especially if you want to split it into separate folders for clarity. You might want a
C# 19 June 2020 The continued theft of ideas by C# Back in the good old days, C# was .NET was Windows. Sure there were antique languages like VB.NET and ivory tower academia from F#
F# 17 July 2019 Chess in F# Recently I decided to implement a chess engine as a way to explore building a rules engine in F# GitHub link: https://github.com/simon-reynolds/
C# 5 February 2019 Immutability One of biggest trends in the last few years is functional programming, once again proving that fashion goes in circles. Immutability is a central tenet
F# 23 January 2019 A simple F# ternary operator While porting some C# to F# recently I got sick of rewriting ternary operators like this var result = condition ? "True Branch" : "False Branch"; into a
F# 11 October 2014 Functional Programming in F# Over the last year I have heard more and more about F#, a functional language for the .Net platform. A great resource for getting to