Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Real-World Web Development with .NET 9

You're reading from   Real-World Web Development with .NET 9 Build websites and services using mature and proven ASP.NET Core MVC, Web API, and Umbraco CMS

Arrow left icon
Product type Paperback
Published in Dec 2024
Publisher Packt
ISBN-13 9781835880388
Length
Edition 1st Edition
Languages
Arrow right icon
Toc

Table of Contents (16) Chapters Close

Real-World Web Development with .NET 9: Build websites and services using mature and proven ASP.NET Core MVC, Web API, and Umbraco CMS
1 Introducing Web Development Using Controllers FREE CHAPTER 2 Building Websites Using ASP.NET Core MVC 3 Model Binding, Validation, and Data Using EF Core 4 Building and Localizing Web User Interfaces 5 Authentication and Authorization 6 Performance Optimization Using Caching 7 Web User Interface Testing Using Playwright 8 Configuring and Containerizing ASP.NET Core Projects 9 Building Web Services Using ASP.NET Core Web API 10 Building Web Services Using ASP.NET Core OData 11 Building Web Services Using FastEndpoints 12 Web Service Integration Testing 13 Web Content Management Using Umbraco 14 Customizing and Extending Umbraco 15 Epilogue

Exploring OData services using HTTP/REST tools

Instead of a browser, a better tool for exploring your OData service is the VS Code extension named REST Client or the HTTP Editor built-in to Visual Studio.

Creating an HTTP file for making requests

Let's explore the many types of query that your OData web service can automatically handle by creating an .http file:

  1. In your preferred code editor, start the Northwind.OData project web service and leave it running.
  2. In the HttpRequests folder, create a file named odata-catalog.http and modify its contents to contain some basic requests to the catalog model, as shown in the following code:
### Configure a variable for the web service base address.
@base_address = https://localhost:5101/catalog/
### Make a GET request to the base address.
GET {{base_address}}
### Make a GET request to the base address for metadata.
GET {{base_address}}$metadata
### Make a GET request to get all categories.
GET {{base_address}}categories
### Make a GET...
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image