I decided to give dwCheckApi that Swagger, and I think you should give your ASP.NET Core APIs that Swagger, too. Find out how in this article
In which I talk through the process involved in creating a .NET Core template, and do a deep (ish) dive into my own template and how it all works
Visual Studio 2107 was recently released. In this blog post I guide you through installing it on Windows, and ways to use it even if you don't run Windows (and don't like the idea of dual booting or using a local VM). We'll also build an extremely simple application together, because I'm nice like that.
The final part in our multi-post tutorial on using WebApi with Entity Framework Core. This week we're doing a little refactoring to add our Join table, Shadow Properties and the ability to Seed the database from a series of json files.
The penultimate part in our multi-post tutorial on using WebApi with Entity Framework Core. This week we'll be adding our Character class and service, a Character controller, a little refactoring, and creating POCOs for our Book and Character models
The second part in our multi-post tutorial on using WebApi with Entity Framework Core. This week we'll be adding an initial database migration, adding some seed data, building a Book service, and returning book JSON data in our Book controller
The first part in our multi-post tutorial on using WebApi with Entity Framework Core. This week we'll go through the data model design, the directory structure we'll be using for out code, and what we actually hope to achieve with this project.
Sometimes you just want to build a website with strong separation of concerns - that's where the MVC model can help. This week we build an MVC application, go through what an MVC application is (covering separation of concerns, too), where you might use one, and what some of the most important configuration options are and where to find them.
Bundling compiled code together is done in libraries. These can be DLLs (in Windows land) or so files in Unix-like OSs. This week we look at how to build a class library in .NET Core and how to reference it in a preexisting application.
In which my friend, all around great guy, and React guru Zac Braddy shows you how to connect to a .NET Core WebApi