All Projects → PacktPublishing → Building-Microservices-with-DotNET-Core

PacktPublishing / Building-Microservices-with-DotNET-Core

Licence: MIT License
Building Microservices with .NET Core, published by Packt

Programming Languages

C#
18002 projects
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
Less
1899 projects
CSS
56736 projects
ASP.NET
160 projects

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].