Skip to content

jesse6548/Building-Microservices-with-DotNET-Core

 
 

Repository files navigation

Building Microservices with .NET Core

This is the code repository for Building Microservices with .NET Core, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.

About the Book

Distributed systems are always difficult to get complete success with. Lately, microservices have been getting considerable attention. With Netflix and Spotify, microservices implementations have some of the biggest success stories in the industry. Microservices is quickly gaining popularity and acceptance with enterprise architects. On the other hand, there is another camp that thinks microservices as nothing new or only as a rebranding of SOA.

In any case, microservices architecture has critical advantages, particularly with regard to empowering the nimble improvement and conveyance of complex venture applications.

However, there is no clear practical advice on how to implement microservices in the Microsoft ecosystem and especially with taking advantage of Azure and the .NET Core framework.

This book tries to fill that void. It explores the concepts, challenges, and strengths of planning, constructing, and operating microservices architectures built with .NET Core. This book discusses all cross-cutting concerns, along with the microservices design. It also highlights the more important aspects to consider while building and operating microservices through practical how tos and best practices for security, monitoring, and scalability.

Link to the author's website

Here is the link for the author's website: http://microservicesfor.net/

Instructions and Navigation

All of the code is organized into folders. Each folder starts with a number followed by the application name. For example, Chapter02.

The code will look like the following:

 namespace FlixOne.BookStore.ProductService.Models
    {
      public class Category
      {
        public Guid Id { get; set; }
        public string Name { get; set; }
        public string Description { get; set; }
       }
    }

All supporting code samples in this book are tested on .NET Core 1.1, using Visual Studio 2015 update 3 as IDE and SQL Server 2008R2 as database on the Windows platform.

Related Products

Suggestions and Feedback

Click here if you have any feedback or suggestions.

About

Building Microservices with .NET Core, published by Packt

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 49.0%
  • Pascal 17.1%
  • PowerShell 15.7%
  • JavaScript 7.8%
  • HTML 5.7%
  • CSS 4.2%
  • Other 0.5%