X

Hands-On Design Patterns with C# and .NET Core: Write clean and maintainable code by using reusable solutions to common software design problems

Product ID : 34671783


Galleon Product ID 34671783
Model
Manufacturer
Shipping Dimension Unknown Dimensions
I think this is wrong?
-
3,001

*Price and Stocks may change without prior notice
*Packaging of actual item may differ from photo shown

Pay with

About Hands-On Design Patterns With C# And .NET

Product Description Apply design patterns to solve problems in software architecture and programming using C# 7.x and .NET Core 2 Key Features Enhance your programming skills by implementing efficient design patterns for C# and .NET Explore design patterns for functional and reactive programming to build robust and scalable applications Discover how to work effectively with microservice and serverless architectures Book Description Design patterns are essentially reusable solutions to common programming problems. When used correctly, they meet crucial software requirements with ease and reduce costs. This book will uncover effective ways to use design patterns and demonstrate their implementation with executable code specific to both C# and .NET Core. Hands-On Design Patterns with C# and .NET Core begins with an overview of object-oriented programming (OOP) and SOLID principles. It provides an in-depth explanation of the Gang of Four (GoF) design patterns such as creational, structural, and behavioral. The book then takes you through functional, reactive, and concurrent patterns, helping you write better code with streams, threads, and coroutines. Toward the end of the book, you'll learn about the latest trends in architecture, exploring design patterns for microservices, serverless, and cloud native applications. You'll even understand the considerations that need to be taken into account when choosing between different architectures such as microservices and MVC. By the end of the book, you will be able to write efficient and clear code and be comfortable working on scalable and maintainable projects of any size. What you will learn Make your code more flexible by applying SOLID principles Follow the Test-driven development (TDD) approach in your .NET Core projects Get to grips with efficient database migration, data persistence, and testing techniques Convert a console application to a web application using the right MVP Write asynchronous, multithreaded, and parallel code Implement MVVM and work with RxJS and AngularJS to deal with changes in databases Explore the features of microservices, serverless programming, and cloud computing Who this book is for If you have a basic understanding of C# and the .NET Core framework, this book will help you write code that is easy to reuse and maintain with the help of proven design patterns that you can implement in your code. Table of Contents Overview of OOP in .NET Core and C# Modern Software Design Patterns and Principles Implementing Design Patterns - Basics Part 1 Implementing Design Patterns - Basics Part 2 Implementing Design Patterns - .Net Core Implementing Design Patterns for web applications- Part 1 Implementing Design Patterns for web applications- Part 2 Concurrent programming in NET Core Functional Programming Practices Reactive Programming Patterns and techniques Advanced database design and application techniques Coding for the Cloud Appendix A: Miscellaneous Best Practices Review When designing good software, engineers naturally gravitate toward solutions that avoid duplication. We are naturally DRY-Don't Repeat Yourself-often without thinking about it! Developers naturally compartmentalize functionality, create reusable methods, and make helpful classes. However, many software design patterns have been created over the years. These are useful, general, and reusable solutions to problems you'll see every day. There are more and more developers who are self-taught or who didn't go through a classical software engineer or computer science course at university, and everyone should enjoy the benefits of decades of development of these great design patterns. Gaurav and Jeffrey have assembled the best and most common patterns and applied them to the open source world of .NET Core and C#. You'll start with OOP, classes, and objects and move your way on to inheritance, encapsulation, and polymorphism. They've covered design principles such as DRY, KISS