Show HN: I built a .NET Core framework and need help
Hey All,
I built an open-source .NET Core framework to try and make my job easier when it comes to building REST APIs off of existing databases. I'm looking for tips on how to properly document it, as well as ways to improve the class structure. Any help is appreciated.
https://github.com/evanirla/snacks-entity-core
I have also built a set of extension packages that handle things like Caching and Authorization.
Thanks!
7 comments
[ 3.2 ms ] story [ 33.8 ms ] threadTo your first point, Dapper is heavily used within this framework. Being able to pass or return models from a query is amazing!
My goal with this was to allow a developer to create their models and be up and running with a RESTful API in hours, without needing to configure each controller route.
Regardless, if you are looking for a good way to build documentation, look no further than DocFX:
https://dotnet.github.io/docfx/index.html
This is something that can be built-in to your CI/CD toolchain and automagically refresh your static HTML docs each time you make changes. All of your actual documentation can live in XML comments above the relevant code members throughout. This is intended to work in concert with the default VS comment style (3 slashes starts XML comment section).