Tagged in

Programming

Pragmatic Programming
Pragmatic Programming
Learn about programming in the wild, what we face day-to-day, and learn from others.
More information
Followers
47
More, on Medium

Template WebAPI: Defining External Configurations

A part of the Template WebAPI series.

One design constraint that I wanted to enforce on the application is that the idea of app settings should stay in the within the API layer. But we still need a mechanism for…


Template WebApi: Request Validation

A part of the Template WebAPI series. Request validation can be a powerful tool for enforcing correct usage of your service. By setting up requirements for usage beforehand, you can prevent errors from occurring within your service that may create side effects.


Template WebAPI: One Solution Structure to Rule Them All

A part of the Template WebAPI series.

Solution Structure

The first distinction that I want to make about the project is the solution structure and how to organize your…