ASP .NET Core API – Fluent Validations – Customizing Messages
In two previous articles, we have seen how to setup fluent validations in ASP .NET Core API project and we also have seen how to use placeholders in the error…
There are variety of ways in which business validations are applied. Some projects may have used various design patterns to build custom layers which would help to keep all the…
We already have seen that there are two different execution models for .NET Based Azure Functions. The two execution models are in-process and isolated worker process. In this article, we…
In past few articles, I have been trying to capture few things that I am learning about Azure Functions. Today, I was going through documentation and was trying to understand…
In last two articles, we have created an HTTP Triggered Azure Functions and we also have seen how the OpenAPI (Swagger page) can be enabled on existing project. This article…
In the previous post, we have created an Azure Functions project. We also have seen that Visual Studio provides choice to select OpenAPI support and hence the Swagger page is…
Now a days, many applications use Serverless APIs. And as we all know, basically, these serverless APIs are basically HTTP triggered Azure Functions. And when it comes to HTTP APIs,…
In previous articles, we have covered various basic aspects of Blazor WebAssembly application. In this article, we are going to demonstrate how the Blazor WebAssembly app can be deployed in…
A Blazor app can invoke JavaScript (JS) functions from .NET methods and .NET methods from JS functions. These scenarios are called JavaScript interoperability (JS interop). In this article, we are going to…
In previous article, we have discussed about parameters. We have seen how the querystring parameters can be used in razor components. We also have seen how to pass values from…
In previous articles, we have seen some basic things related to Blazor components. Those articles are listed here, just case you want to refer them. .NET 7 – Blazor WebAssembly…