| I'm using .NET Core/F# for the backend of my bootstrapped "startup". I mostly have an iOS dev background so take my experiences with a grain of salt. So far everything has gone pretty smooth. ASP.NET Core is running under the hood which seems to be pretty mature. F# and the libraries that I work with all provide a functional development experience. I interface with a Postgres database, so there's libraries for that as well. You mentioned Domain-Driven Design. I would recommend reading Scott Wlaschins book Domain Modeling Made Functional [1]. If you are interested in playing around with F#, a quick way to start would be to try SAFE stack [2]. From what I have read during the last couple of months, MS seems to be interested in pushing F# as one of their go-to languages for machine learning. At least they have an F# example online [3], which can not be said for most other areas where F# would also be a good fit in my opinion. [1] https://fsharpforfunandprofit.com/books/
[2] https://safe-stack.github.io
[3] https://dotnet.microsoft.com/apps/machinelearning-ai/ml-dotn... |