Asp.net – Dynamically Creating a Func<> Delegate in F# Based on a Passed Function
I'm working on developing an F# wrapper for ASP.NET Core's minimal API to make route handlers more idiomatic to F#. My current implementation for a simple GET endpoint looks traditionally C#-ish: app.MapGet("/", Func<Http.HttpContext, string>(fun _ -> "Hello World!")) I'm aiming…