Linking to Nancy Routes
I’ve previously blogged about Nancy.Linker, the URI Builder for NancyFX. However, I wanted to take it a step further and give an actual example of how I handle linking to Nancy routes through my application. Organize by Feature I organize my application by features. Features are generally commands or queries. They are either returning data (queries) or actions that represent behaviors (commands). This means that I generally only have one route per feature. Since I organize by feature, this means that I put the Nancy module with the single route and then all subsequent code (commands or queries, handlers, models) in that… Read More »Linking to Nancy Routes