Skip to content

Oracle Database - Tables and Constraints

27/09/2024
by George Vest

Tip – REST APIs

Postman is a fantastic tool for building web APIs documentation, test suites, and experimenting with your APIs. It supports OpenAPI...

  • ASP.NET Certifications / Exams of ASP.NET
  • 0
  • Read More
26/09/2024
by George Vest

The first endpoint – REST APIs

The code of the first endpoint that allows a client to read an entity looks like this: app.MapGet(    “/{id:int}”,    (int...

  • ASP.NET Certifications / Exams of ASP.NET
  • 0
  • Read More
25/09/2024
by George Vest

Summary – REST APIs

REST APIs facilitate communication between applications in today’s interconnected digital world. We explored the HTTP protocol, HTTP methods, HTTP status...

  • ASP.NET Certifications / Exams of ASP.NET
  • 0
  • Read More
24/09/2024
by George Vest

The second endpoint – REST APIs

The code of the second endpoint that allows a client to create an entity looks like this: app.MapPost(    “/”,    (CreateDto...

  • ASP.NET Certifications / Exams of ASP.NET
  • 0
  • Read More
23/09/2024
by George Vest

Top-level statements– Minimal API

Before you begin: Join our book community on Discord Give your feedback straight to the author himself and chat to...

  • ASP.NET Certifications / Exams of ASP.NET
  • 0
  • Read More
22/09/2024
by George Vest

Minimal Hosting– Minimal API

.NET 6 introduced the minimal hosting model. It combines the Startup and Program classes into a single Program.cs file. It...

  • ASP.NET Certifications / Exams of ASP.NET
  • 0
  • Read More
21/09/2024
by George Vest

Map route-to-delegate – Minimal API

How does it work? Minimal APIs bring multiple extension methods to configure the HTTP pipeline and configure endpoints. We can...

  • ASP.NET Certifications / Exams of ASP.NET
  • 0
  • Read More
20/09/2024
by George Vest

Inputs – Minimal API

An endpoint rarely has no parameter (no input value). Minimal APIs, like MVC, support a wide variety of binding sources....

  • ASP.NET Certifications / Exams of ASP.NET
  • 0
  • Read More
18/09/2024
by George Vest

Manual binding – Minimal API

The BindAsync method takes an HttpContext and a ParameterInfo parameter and returns a ValueTask<TSelf> where TSelf is the type we...

  • ASP.NET Certifications / Exams of ASP.NET
  • 0
  • Read More
17/09/2024
by George Vest

Dependency inversion principle (DIP) – Architectural Principles

The DIP provides flexibility, testability, and modularity, by reducing tight coupling between classes or modules.Let’s continue with another quote from...

  • ASP.NET Certifications / Exams of ASP.NET
  • 0
  • Read More
  • « Previous Page
  • Next Page »

Oracle Database – Tables and Constraints © 2025. All Rights Reserved.