"Function Flow is a library that takes a set of algorithms and wires them together in to a single composite algorithm. Without Function Flow, one might right. public Enchilada MakeEnchilada(Oil oil, Spices spices, Flour flour, Broth broth, Tortillas tortillas, Cheese cheese, Onion onion){ var sauce = Mix(oil, spices, flour, broth); var browned = Fry(oil, tortillas); var grated = Grate(cheese); var assembled = Assemble(sauce, browned, grated); var almost = Bake(assembled); var chopped = Chop(onion); return Garnish(almost, sauce, chopped); } With Function Flow this becomes: public Enchilada MakeEnchilada(Oil oil, Spices spices, Flour flour, Broth broth, Tortillas tortillas, Cheese cheese, Onion onion){ return new FlowBuilder() .Then(Mix) .Then(Fry) .Then(Grate) .Then(Assemble) .Then(Bake) .Then(Chop) .Then(Garnish) .Run(oil, spices, flour, broth, tortillas, cheese, onion); } It has very specific use-cases. For more details please see the github page."
Open source library or nuget package built with .net standard and c# by @Prototypist1.
Repository: https://github.com/Prototypist1/FunctionFlow
"Provides types that simplify the use of EventFlow library by Microsoft Service Fabric services."
Library or NuGet package built with .net standard and c# by Microsoft.
"Dynamic Linq extensions for Microsoft.EntityFrameworkCore which adds Async support"
Library or NuGet package built with .net standard and c# by ZZZ Projects & Stef Heyenrath.
"This library uses and abuses the features of C# to provide a functional 'Base class library', that, if you squint, can look like extensions to the language itsel…"
Library or NuGet package built with .net standard and c# by Paul Louth.
"PostgreSQL/Npgsql provider for Entity Framework Core."
Library or NuGet package built with .net standard and c# by Shay Rojansky, Austin Drenski & Yoh Deadfall.
"App Metrics Formatting, formatting metrics data to Prometheus formats."
Library or NuGet package built with .net standard and c# by Allan Hardy and Contributors.
"Internal implementation package not meant for direct consumption. Please do not reference directly. Provides the CoreCLR runtime and build tools to build and run U…"
Library or NuGet package built with .net standard and c# by Microsoft.
Hello, I'm Corstiaan. I'm a software developer from the Netherlands and I manage BuiltWithDot.Net. I created this site as a place where developers working with .net technology can showcase their projects and inspire other developers.
There's so much you can build with .net these days that I thought it would be nice to have a corner of the web dedicated to the breadth of .net. Enjoy!
Get weekly updates about new projects built with .net tech
Great! Click the link in the e-mail to confirm. Check the spam folder if you can't find it.
No spam. Unsubscribe any time.
© 2024 - created by Corstiaan Hesselink - submit project - RSS feed - contact