Book Image

Hands-On Full-Stack Web Development with ASP.NET Core

By : Tamir Dresher, Amir Zuker, Shay Friedman
Book Image

Hands-On Full-Stack Web Development with ASP.NET Core

By: Tamir Dresher, Amir Zuker, Shay Friedman

Overview of this book

Today, full-stack development is the name of the game. Developers who can build complete solutions, including both backend and frontend products, are in great demand in the industry, hence being able to do so a desirable skill. However, embarking on the path to becoming a modern full-stack developer can be overwhelmingly difficult, so the key purpose of this book is to simplify and ease the process. This comprehensive guide will take you through the journey of becoming a full-stack developer in the realm of the web and .NET. It begins by implementing data-oriented RESTful APIs, leveraging ASP.NET Core and Entity Framework. Afterward, it describes the web development field, including its history and future horizons. Then, you’ll build webbased Single-Page Applications (SPAs) by learning about numerous popular technologies, namely TypeScript, Angular, React, and Vue. After that, you’ll learn about additional related concerns involving deployment, hosting, and monitoring by leveraging the cloud; specifically, Azure. By the end of this book, you’ll be able to build, deploy, and monitor cloud-based, data-oriented, RESTful APIs, as well as modern web apps, using the most popular frameworks and technologies.
Table of Contents (22 chapters)
Title Page
PacktPub.com
Contributors
Preface
Index

Querying data


If you've ever used Language Integrated Query (LINQ) before, you'll feel right at home with EF Core. The DbSet collection, which we've used to manipulate objects' states, implements the IQueryable interface that defines many querying operators that are later transformed into SQL statements by the database provider you've used. 

For example, the GiveNTake application allows the user to search for products that were published on a specific date. Here is a shortened version of how it is done:

[HttpGet("search/{date:datetime}/{keyword}/")]
public async Task<IActionResult> Search(DateTime date, string keyword)
{
    var products = await _context.Products      
        .Where(p => p.Title.Contains(keyword))
        .Where(p => p.PublishDate.Date == date.Date)
        .ToListAsync();

    // returning a response with the found products
}

The Where operator creates a filter on the IQueryable<Product> that the ProductsDbSet collection implements. LINQ has a composable...