Latest blogs by Geeks

The Paradigm Shift to Low-Code and No-Code Development in Software Engineering
In the realm of software engineering, one trend is steadily rising to prominence - the low-code and no-code development approach. The two are fundamentally shifting the software development paradigm, democratizing the sector, and speeding up the software production process.

Implement Repository Pattern with ASP.NET Core Web API
This blog explains how to implement a Repository Pattern with ASP.NET Web API, AutoMapper, Entity Framework, and async operations.

How To Use AutoMapper in ASP.NET Core Web API
This blog explains how to use AutoMapper in ASP.NET Core Web API project, the configuration of AutoMapper, mapping domain, and DTOs, and custom property mapping.

Getting Started with ASP.NET Core Web API and Entity Framework
Get started with ASP.NET Core Web API and Entity Framework by building a basic API to get data from SQL Server. And features like CORS Policy, and Logging.

Generate Log using Serilog And Seq In ASP.NET Core MVC 6
This blog explains how to generate log using Serilog, its feature like Sink, log level, JSONFormatter, Serilog Enricher, Output Templates and analyze using Seq.

How to Setup CORS Policies in ASP.NET Core Web API
This blog explains how to set up CORS policies using default policy, add policy, middleware, endpoint routing, and EnableCors attribute.

.NET Core Dependency Injection Object Lifetime
In .NET Core, you can register dependencies using three different methods AddSingleton, AddTransient, and AddScoped. This blog explains each of these methods.

How to Implement Dependency Injection in .NET Core
.NET Core provides built-in support of dependency injection. This blog will help you to understand how and why to implement dependency injection in .Net Core.

Azure Resource Manager Template Overview
Azure resource manager is the modern deployment service for Azure resources. It is an IaaS helping to automate Azure resource management.

Get Azure Subscription, Tenant, Client ID, Client secret
To access Azure API, ARM, setting up an application or while using Fluent SDK you will need Subscription Id, Tenant Id, Client Id, and client secret.

Create Azure VM using C# Fluent SDK
This blog explains how to create an Azure Virtual Machine with a resource group, storage account, virtual network, network interface, etc. using C# Fluent SDK.

Create and Connect Azure Linux VM with SSH Key Pair
This blog explains to create a Linux VM using SSH key pair and connecting from Azure CLI and Windows Powershell.

How to use ASP.NET Core MVC built-in Filters
ASP.NET Core MVC uses number of built-in filters like Authorization, Resource, Action, Exception, and Result filters.

What is PerSession Behavior of WCF Service
This article explains what is PerSession Behavior, the configuration, and implementation of PerSession and it's difference with Persession

How Per Call Service Instance Works in WCF
This article helps you to understand how per-call WCF service works and how its instances are created.

How to use Areas in ASP.NET Core MVC
This blog explains how to create Area in ASP.NET Core MVC application, configure the default area route, link controller action methods from different areas.

Create MongoDB Docker Image and Connect from .NET Core app
This blog creates a Docker MongoDB Image container, database, collection and connnect this container through .NET Core Console app to read table data.

Return different types of content from ASP.NET Core MVC Action Result
ASP.NET Core MVC action result returns different types of content it can be HTML, JSON, string, or empty content. We will explore ViewResult, PartialViewResult, JsonResult, ContentResult, EmptyResult.

ASP.NET Core MVC returning file using Fileresult
This blog explains how you can return files to client from ASP.NET Core application using fileresult actionresults like FileContentResult, FileStreamResult, VirtualFileResult, PhysicalFileResult.

How To Redirect ASP.NET MVC Core Request
In ASP.NET MVC Core request redirection RedirectResult, RedirectToActionResult, RedirectToRouteResult, LocalRedirectResult can be used for redirection.

ASP.NET MVC Core Controller Action Method and Types of Action Result
This blog explains what is MVC Controller, Action Method, and different types of ActionResult like HTML returning, Content, Redirect, File, Status Code, Security related.

ASP.NET Core MVC Model Binding
This article explains what is model binding in ASP.NET Core MVC and how to use its different attributes while binding the model.

jQuery AJAX AutoComplete in ASP.NET MVC Core
This tutorial explains how to use the jQuery AJAX AutoComplete feature in your ASP.NET MVC Core application. For this, you will use Visual Studio 2019, NET5, EF Core, Web API controller, and AdventureWorks database of SQL Server.

Microservice Architecture Pattern for Architects
This blogpost explains about advantages, disadvantages, internal service communication, SOA vs MSA, Prerequisites, and other aspects of Microservice Architecture that are required to define architecture your application with Microservices.

Getting Started with ASP.NET MVC Core and .NET 5
In this article, we are going to create a simple ASP.NET MVC Core Web Application using Visual Studio 2019 and .Net 5. We will also add controller, action method, MVC view with Model binding.