Exploring Azure Functions HTTP trigger using EF Core

Introduction The HTTP trigger lets you invoke a function with an HTTP request. These HTTP trigger lets you build serverless api and respond to the webhooks. In case you haven't read my previous article, I would recommend you to read from here Source Code Here Attributes Attribute PropertyDescriptionRouteIt define the route template on which the …

Continue reading Exploring Azure Functions HTTP trigger using EF Core

Microservices part 3

In this article, we’ll discuss about Data Annotation and Fluent Validation. This article only covers about validation part such as validation using data annotation, Custom validation using data annotation and Fluent validation. https://anuphosur.wordpress.com/2020/03/29/microservices-part-2/ https://anuphosur.wordpress.com/2020/03/29/microservices-part-1/ Getting Started with Data Annotation Firstly, let’s understand, what is Data Annotation? Data Annotation are the attributes to enforce rules to …

Continue reading Microservices part 3