In this chapter, I start the process of creating an HTTP web service that the Angular application can use to request data from ASP.NET Core MVC. This process is not as simple as it might be because of the way that different features interact, both in the MVC and Angular parts of the application, but the result is a solid foundation for accessing data that I build on in Chapter 6 to support a complete set of data operations.
My focus in this chapter is starting the web service and checking that each new addition works as expected. This means that I request and display data in the Angular ...