Extends the FSharp.Control namespace to add Operations, a Railway-Oriented Programming framework compatible with Async Worfklows and the Task Parallel Library (TPL), including a Computation Expression Builder and library functions.
A library for implementing the Command Pattern, providing of a set of base classes and an invoker class. Useful for abstracting data access and API calls as either queries (for read operations) or commands (for write operations).
Reads and evaluates string representations of mathematical formulae. Can be used for solving equations or plotting graphs.
eg.
var formula = MathParse.Parse("3sinx + 1");
return formula.Evaluate(Math.Pi);
will return 1 (which is 3sinĪ + 1)
A data access library for .NET combining the mediator pattern and the query object pattern, with caching, async and easy mocking of queries and commands
A data access library for .NET combining the mediator pattern and the query object pattern, with caching, async and easy mocking of queries and commands.