Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
An Atypical ASP.NET Core 5 Design Patterns Guide
An Atypical ASP.NET Core 5 Design Patterns Guide

An Atypical ASP.NET Core 5 Design Patterns Guide: A SOLID adventure into architectural principles, design patterns, .NET 5, and C#

Arrow left icon
Profile Icon Carl-Hugo Marcotte
Arrow right icon
Can$49.99
Full star icon Full star icon Full star icon Half star icon Empty star icon 3.5 (11 Ratings)
eBook Dec 2020 762 pages 1st Edition
eBook
Can$49.99
Paperback
Can$61.99
Subscription
Free Trial
Arrow left icon
Profile Icon Carl-Hugo Marcotte
Arrow right icon
Can$49.99
Full star icon Full star icon Full star icon Half star icon Empty star icon 3.5 (11 Ratings)
eBook Dec 2020 762 pages 1st Edition
eBook
Can$49.99
Paperback
Can$61.99
Subscription
Free Trial
eBook
Can$49.99
Paperback
Can$61.99
Subscription
Free Trial

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
Table of content icon View table of contents Preview book icon Preview Book

An Atypical ASP.NET Core 5 Design Patterns Guide

Chapter 1: Introduction to .NET

The goal behind this book is not to create yet another design pattern book, but instead, it organizes the chapters cohesively based on scale and topics, allowing you to start small with strong bases and build slowly on top, in just the same way that you would build a program.

Instead of writing a guide that covers a few ways of applying a design pattern, we explore the thinking process behind the systems that we are designing from a software engineer's point of view.

This is not a magic recipe book, and from experience, there is no magic recipe when designing software; there is only your logic, knowledge, experience, and analytical skills. From that last sentence, let's define experience according to your past successes and failures. And don't worry, you will fail during your career, but don't get discouraged by it. The faster you fail, the faster you can recover and learn, leading to successful products. Many techniques covered...

What is a design pattern?

Since you just purchased a book about design patterns, I guess that you have some idea of what they are, but let's just make sure that we are on the same page:

Abstract definition: A design pattern is a proven technique that can be used to solve a specific problem.

In this book, we apply different patterns to solve different problems and how to leverage some open source tools to go further, faster! Abstract definitions make people sound intelligent and all, but there is no better way to learn than by experimenting with something, and design patterns are no different.

If that definition does not make sense to you yet, don't worry. You should have enough information at the end of the book to correlate the multiple practical examples and explanations with that definition, making it clear enough.

I like to compare programming to playing with LEGO® because what you must do is mostly the same: snap small pieces together to create something...

Anti-patterns and code smells

Anti-patterns and code smells are architectural bad practices or tips about possible bad design. Learning about best practices is as important as learning about bad ones, which is where we start. Moreover, there are multiple anti-patterns and code smells throughout the book to help you get started.

Unfortunately, we can't cover every detail of every topic, so I encourage you to dig deeper into those fields as well as into design patterns and architectural principles.

Anti-patterns

An anti-pattern is the opposite of a design pattern: it is a proven flawed technique that will most likely cause you some trouble and cost you time and money (and probably give you a headache or two along the way).

A priori, an anti-pattern is a pattern that seems to be a good idea, and that seems to be the solution that you were looking for, but in the end, it will most likely cause more harm than good. Some anti-patterns started out as legitimate design patterns...

Understanding the web – Request/Response

Before going any further, it is imperative to understand the basic concept of the web. The idea behind HTTP 1.X is that a client sends an HTTP request to a server, and then the server responds to that client. That can sound trivial if you have web development experience. However, it is one of the most important web programming concepts, irrespective of whether you are building web APIs, websites, or complex cloud applications.

Let's reduce an HTTP request lifetime to the following:

  1. The communication starts.
  2. The client sends a request to the server.
  3. The server receives the request.
  4. The server most likely does something (executes some code/logic).
  5. The server responds to the client.
  6. The communication ends.

After that cycle, the server is no longer aware of the client. Moreover, if the client sends another request, the server is not aware that it responded to a request earlier for that same client...

Getting started with .NET

A bit of history; the team did a magnificent job building ASP.NET Core from the ground up, cutting out compatibility with older versions. That brought its share of problems at first, but those interoperability issues got alleviated by the creation of .NET Standards. Now, with the reunification of most technologies into .NET 5 and the promise of a shared BCL, the name ASP.NET Core is (almost) no more, but became the future. Afterward, Microsoft is planning a major release of .NET every year, so 2021 should be .NET 6, and so on.

The good thing is that architectural principles and design patterns should remain relevant in the future and are not tightly coupled with the versions of .NET you are using. Minor changes to the code sample should be enough to migrate the knowledge and the code to the new versions.

Now, let's cover some key information surrounding .NET 5 and the .NET ecosystem.

.NET SDK versus runtime

You can install different binaries...

Summary

In this chapter, we peaked at design patterns, anti-patterns, and code smells. We also explored a few of those. We then moved to a reminder about the request/response cycle of a typical web application.

We continued by exploring .NET essentials, such as SDK versus runtime and app target versus .NET Standard. This sets us on the path to exploring the different possibilities that we have when it comes to building our .NET applications. We then dug a little more into the .NET CLI, where I laid down a list of essential commands, including dotnet build and dotnet watch run. We also covered how to create new projects.

In the next two chapters, we explore automated testing and architectural principles. These are foundational chapters for anyone wishing to build robust, flexible, and maintainable applications.

Questions

Let's take a look at a few practice questions:

  1. Can we add a body to a GET request?
  2. Why are long methods a code smell?
  3. Is it true that .NET Standard should be your default target when creating libraries?
  4. What is a code smell?

Further reading

Here are some links to consolidate what has been learned in the chapter:

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Apply software design patterns effectively, starting small and progressing to cloud-scale
  • Discover modern application architectures such as vertical slice, clean architecture, and event-driven microservices
  • Explore ASP.NET design patterns, from options to full-stack web development using Blazor

Description

Design patterns are a set of solutions to many of the common problems occurring in software development. Knowledge of these design patterns helps developers and professionals to craft software solutions of any scale. ASP.NET Core 5 Design Patterns starts by exploring basic design patterns, architectural principles, dependency injection, and other ASP.NET Core mechanisms. You’ll explore the component scale as you discover patterns oriented toward small chunks of the software, and then move to application-scale patterns and techniques to understand higher-level patterns and how to structure the application as a whole. The book covers a range of significant GoF (Gangs of Four) design patterns such as strategy, singleton, decorator, facade, and composite. The chapters are organized based on scale and topics, allowing you to start small and build on a strong base, the same way that you would develop a program. With the help of use cases, the book will show you how to combine design patterns to display alternate usage and help you feel comfortable working with a variety of design patterns. Finally, you’ll advance to the client side to connect the dots and make ASP.NET Core a viable full-stack alternative. By the end of the book, you’ll be able to mix and match design patterns and have learned how to think about architecture and how it works.

Who is this book for?

This design patterns book is for intermediate-level software and web developers with some knowledge of .NET who want to write flexible, maintainable, and robust code for building scalable web applications. Knowledge of C# programming and an understanding of web concepts like HTTP is necessary.

What you will learn

  • Apply the SOLID principles for building flexible and maintainable software
  • Get to grips with .NET 5 dependency injection
  • Work with GoF design patterns such as strategy, decorator, and composite
  • Explore the MVC patterns for designing web APIs and web applications using Razor
  • Discover layering techniques and tenets of clean architecture
  • Become familiar with CQRS and vertical slice architecture as an alternative to layering
  • Understand microservices, what they are, and what they are not
  • Build ASP.NET UI from server-side to client-side Blazor

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Dec 31, 2020
Length: 762 pages
Edition : 1st
Language : English
ISBN-13 : 9781789340655
Vendor :
Microsoft
Languages :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning

Product Details

Publication date : Dec 31, 2020
Length: 762 pages
Edition : 1st
Language : English
ISBN-13 : 9781789340655
Vendor :
Microsoft
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just Can$6 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just Can$6 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total Can$ 215.97
Software Architecture with C# 9 and .NET 5
Can$97.99
An Atypical ASP.NET Core 5 Design Patterns Guide
Can$61.99
ASP.NET Core 5 and React
Can$55.99
Total Can$ 215.97 Stars icon

Table of Contents

26 Chapters
Section 1: Principles and Methodologies Chevron down icon Chevron up icon
Chapter 1: Introduction to .NET Chevron down icon Chevron up icon
Chapter 2: Testing Your ASP.NET Core Application Chevron down icon Chevron up icon
Chapter 3: Architectural Principles Chevron down icon Chevron up icon
Section 2: Designing for ASP.NET Core Chevron down icon Chevron up icon
Chapter 4: The MVC Pattern using Razor Chevron down icon Chevron up icon
Chapter 5: The MVC Pattern for Web APIs Chevron down icon Chevron up icon
Chapter 6: Understanding the Strategy, Abstract Factory, and Singleton Design Patterns Chevron down icon Chevron up icon
Chapter 7: Deep Dive into Dependency Injection Chevron down icon Chevron up icon
Chapter 8: Options and Logging Patterns Chevron down icon Chevron up icon
Section 3: Designing at Component Scale Chevron down icon Chevron up icon
Chapter 9: Structural Patterns Chevron down icon Chevron up icon
Chapter 10: Behavioral Patterns Chevron down icon Chevron up icon
Chapter 11: Understanding the Operation Result Design Pattern Chevron down icon Chevron up icon
Section 4: Designing at Application Scale Chevron down icon Chevron up icon
Chapter 12: Understanding Layering Chevron down icon Chevron up icon
Chapter 13: Getting Started with Object Mappers Chevron down icon Chevron up icon
Chapter 14: Mediator and CQRS Design Patterns Chevron down icon Chevron up icon
Chapter 15: Getting Started with Vertical Slice Architecture Chevron down icon Chevron up icon
Chapter 16: Introduction to Microservices Architecture Chevron down icon Chevron up icon
Section 5: Designing the Client Side Chevron down icon Chevron up icon
Chapter 17: ASP.NET Core User Interfaces Chevron down icon Chevron up icon
Chapter 18: A Brief Look into Blazor Chevron down icon Chevron up icon
Assessment Answers Chevron down icon Chevron up icon
Acronyms Lexicon Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Full star icon Half star icon Empty star icon 3.5
(11 Ratings)
5 star 54.5%
4 star 9.1%
3 star 0%
2 star 0%
1 star 36.4%
Filter icon Filter
Top Reviews

Filter reviews by




Joanna Feb 18, 2023
Full star icon Full star icon Full star icon Full star icon Full star icon 5
A lot of code examples
Amazon Verified review Amazon
Amazon Customer Jan 19, 2021
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Got this book from last week and still amaze by all the pertinent information you find in it. All C# and .NET developer should have this in his library. Concrete examples to build a strong core code in perfect pattern.I really recommend this book !
Amazon Verified review Amazon
Tom Strele Apr 15, 2021
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Excellent coverage of software design patterns in .NET context.
Amazon Verified review Amazon
Vicente Guzmán Mar 02, 2021
Full star icon Full star icon Full star icon Full star icon Full star icon 5
This book is written extremely well. It starts with an introduction to the S.O.L.I.D. design principles and an introduction to design patterns. The examples all do an excellent job of putting the design patterns in context and help to figure out how they are useful and where they fit in application design.The technology will change but the re-usable design patterns remains and can be applied formally in years to come. I highly recommend the book and huge props to the author who has done a tremendous job of writing not just a Design Pattern book but a technical book as well. This fine book is something that I will be referencing a lot and kept close by.I haven't nothing negative to say about this text
Amazon Verified review Amazon
Vasavi Venkatesh Jan 23, 2021
Full star icon Full star icon Full star icon Full star icon Full star icon 5
I got this book as a part of my swag prize from .NET Conference & Packt. This was exactly what I was looking for. As someone who worked in .NET extensively but with little guidance on the best practices and design patterns, the book was immensely useful for me. The examples were easy to understand and methodical. (The conversational tone to the text was a thumbs up for me).Very solid book and would definitely recommend as a quick-reference resource on Object-oriented designing.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.