Skip to content

RESTful Web Services with ASP.NET Core 7, published by Packt

License

Notifications You must be signed in to change notification settings

PacktPublishing/Web-API-Development-with-ASP.NET-Core-8

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

72 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Web API Development with ASP.NET Core 8

This is the code repository for Web API Development with ASP.NET Core 8, published by Packt.

Learn techniques, patterns, and tools for building high-performance, robust, and scalable web APIs

What is this book about?

Web API applications have become increasingly significant in recent years, fueled by the ever-accelerating pace of technological advancements. However, with this rapid evolution comes a pressing challenge: the need to create web API applications that are not only functional but also adaptable, maintainable, and scalable to meet the demands of users and businesses alike. This book will help you address this challenge head-on, equipping you with the knowledge and skills required to develop web API applications from scratch.

This book covers the following exciting features:

  • Build a strong foundation in web API fundamentals
  • Explore the ASP.NET Core 8 framework and other industry-standard libraries and tools for high-performance, scalable web APIs
  • Apply essential software design patterns such as MVC, dependency injection, and the repository pattern
  • Use Entity Framework Core for database operations and complex query creation
  • Implement robust security measures to protect against malicious attacks and data breaches
  • Deploy your application to the cloud using Azure and leverage Azure DevOps to implement CI/CD

If you feel this book is for you, get your copy today!

https://www.packtpub.com/

Instructions and Navigations

All of the code is organized into folders. For example, Chapter02.

The code will look like the following:

namespace MyFirstApi.Models;

public class Post
{
    public int UserId { get; set; }
    public int Id { get; set; }
    public string Title { get; set; } = string.Empty;
    public string Body { get; set; } = string.Empty;
}

Following is what you need for this book:

This book is for developers who want to learn how to build web APIs with ASP.NET Core and create flexible, maintainable, scalable applications with .NET platform. Basic knowledge of C#, .NET, and Git will assist with understanding the concepts more easily.

With the following software and hardware list you can run all code files present in the book (Chapter 1-18).

Software and Hardware List

Chapter Software required OS required
1-18 Visual Studio 2022 Community Edition Windows, macOS, or Linux
1-18 Azure, Azure DevOps, GitHub Windows, macOS, or Linux
1-18 Seq, Prometheus, Grafana, Jaeger Windows, Docker/Linux

Related products

Get to Know the Author

Xiaodi Yan is a seasoned software engineer with a proven track record in the IT industry. Since 2015, he has been awarded Microsoft MVP, showcasing his dedication to and expertise in .NET, AI, DevOps, and cloud computing. He is also a Microsoft Certified Trainer (MCT), Azure Solutions Architect Expert, and LinkedIn Learning instructor. Xiaodi often presents at conferences and user groups, leveraging his extensive experience to engage and inspire audiences. Based in Wellington, New Zealand, he spearheads the Wellington .NET User Group, fostering a vibrant community of like-minded professionals. Connect with Xiaodi on LinkedIn to stay updated on his latest insights.

About

RESTful Web Services with ASP.NET Core 7, published by Packt

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •