Resources  
  • Getting Started with React: Setting Up Your Project and Integrating APIsJul 03, 2025. React is one of the most popular JavaScript libraries for building modern web applications. Whether you're a beginner or transitioning from another framework, learning how to set up a React project and connect it to APIs is essential. This guide will walk you through the process from scratch.
  • .Net 9 Web API Minimal API with Entity FrameworkJun 29, 2025. Here we will discuss how to create an Entity framework in .Net Minimal Web API with an Authorized JWT (JSON- Wen Token) token in Swagger web view.
  • Understanding the .NET EcosystemJun 24, 2025. Explore the .NET ecosystem — from C#, ASP.NET Core, and Entity Framework to ML.NET and .NET MAUI — with clear explanations and real-world examples.
  • Setting Up Azure Data Fabric Workspaces and Lakehouses Using C# SDKs Jun 24, 2025. Learn how to set up Azure Data Fabric Workspaces and Lakehouses using C# SDKs. This guide covers workspace provisioning, lakehouse creation, and automating data infrastructure with .NET.
  • Entity Framework Change TrackingJun 20, 2025. This article explains Entity Framework Core Change Tracking, covering how EF tracks entity states, manages updates, and boosts performance using no-tracking queries for efficient, read-only data access.
  • Setting Up a CA Template with SAN and Custom SettingsJun 17, 2025. Learn how to set up a Certificate Authority (CA) server template with Subject Alternative Names (SAN) and advanced settings to issue secure, customized certificates for internal environments.
  • Handle Entity Framework TransactionsJun 15, 2025. Learn how to manage transactions in Entity Framework to ensure data integrity. This article covers built-in handling, explicit transactions, rollbacks, commits, and managing multiple DbContexts for consistent operations.
  • Overview of TLS with .NET FrameworkJun 09, 2025. Learn TLS basics, its advantages, .NET framework compatibility, how to enable or set default TLS versions in C#, and detect active TLS versions on websites using practical C# code examples.
  • 🔍 Efficient Ways to Organize Your SharePoint Document LibrariesJun 09, 2025. A well-structured SharePoint document library is essential for productivity and ease of access. Whether you're starting from scratch or planning a clean-up, here are four smart organizational methods to manage your files better—and when to apply each.
  • Named Entity Recognition (NER) with spaCy and TransformersJun 06, 2025. Learn how to use Named Entity Recognition (NER) with spaCy and transformer models like BERT to extract people, places, and organizations from text with high accuracy.
  • Liquid Objects in Power Pages Portal – Explained with ExamplesJun 02, 2025. Learn how to use Liquid Objects in Power Pages Portal with clear examples. This guide helps you customize dynamic content, enhance user experience, and master Power Platform Liquid syntax.
  • EJB QUERY LANGUAGE (EJB QL)May 30, 2025. EJB QL is a query language used to query enterprise beans and their relationships, supporting string and arithmetic functions, with syntax defined using Backus-Naur Form (BNF) for structured query creation.
  • Setting Up Docker SwarmMay 30, 2025. Learn how to set up a Docker Swarm cluster step-by-step, from prerequisites to init and join commands—perfect for beginners exploring container orchestration.
  • What is UEBA (User and Entity Behavior Analytics) in SIEMMay 28, 2025. UEBA (User and Entity Behavior Analytics) enhances SIEM by using AI to detect unusual behavior from users or devices, helping identify insider threats, anomalies, and advanced cyberattacks in real-time.
  • Understanding the Set-CalendarProcessing Cmdlet in Exchange OnlineMay 27, 2025. Learn how to use the Set-CalendarProcessing cmdlet in Exchange Online to manage calendar settings, auto-accept meetings, configure booking options and streamline scheduling with PowerShell.
  • Working with Entities in Power Platform Copilot StudioMay 23, 2025. Learn how to use entities in Microsoft Copilot Studio to build smarter, AI-powered chatbots. Understand prebuilt and custom entities, improve conversation flows, and enhance user interaction and personalization.
  • How to Set Up Microsoft Authentication in Power Pages for External UsersMay 22, 2025. Learn How to Set Up Microsoft Authentication in Power Pages for external Users with this step-by-step guide. Enable secure sign-in for users, integrate identity management, and enhance your site’s security using Entra ID authentication.
  • How to Implement Code Quality Rules in .NET CoreMay 20, 2025. Learn how to enforce consistent coding styles and improve .NET code quality using .editorconfig and Roslyn Analyzers. Discover creating custom analyzers to catch bugs early and maintain clean, scalable codebases.
  • 🚀 How to Set Up an AI Engineering Team from ScratchMay 17, 2025. Learn how to build a high-performing AI/ML engineering team from the ground up. This step-by-step guide covers defining your AI vision, hiring key roles, setting up infrastructure, implementing best practices, and scaling your team effectively to accelerate AI-driven innovation.
  • Setting Up Figma MCP Server with GitHub CopilotMay 15, 2025. Learn how to set up the Figma MCP (Multi-Component Plugin) Server efficiently using GitHub Copilot.
  • How to Set Up Avalanche Blockchain on Devnet & Transfer TokensMay 12, 2025. This article covers the setup of the Avalanche blockchain on DevNet, including installing tools like Docker, Avalanche CLI, and Hardhat. It walks through deploying an ERC-20 token smart contract and transferring tokens between wallets.2/2
  • Advanced C# Database Tricks into a Practical SolutionMay 02, 2025. This project demonstrates an advanced C# database architecture combining EF Core, Dapper, and ADO.NET to achieve optimal performance, flexibility, and maintainability—complete with clean architecture, logging, and benchmarks.
  • Advanced C# Database Tricks for Power UsersMay 01, 2025. Explore advanced C# database techniques using ADO.NET, Entity Framework Core, and Dapper.
  • Splitting Of Datasets in Machine LearningApr 23, 2025. Splitting datasets is vital in machine learning to test model accuracy on unseen data. Common methods include train-test split, k-fold cross-validation, stratified k-fold, and time series split.
  • Setting the App Icon and SplashScreen in MAUI [GamesCatalog] 17Apr 23, 2025. Configured custom app icon and splash screen in .NET MAUI using SVG files from FontAwesome. Integrated local game rating storage via the IGDB API. Prepping for next phase: building a Web API backend.
  • Set Up GitHub Actions for Azure Using TerraformApr 17, 2025. GitHub Actions enables CI/CD automation through workflows and runners. Easily deploy Azure resources using Terraform by setting up a self-hosted runner, writing workflows in YAML, and managing infrastructure as code.
  • Entity Framework Core - Deep Performance Optimization GuideApr 16, 2025. Optimize your Entity Framework Core apps with proven performance tips: use AsNoTracking, prevent N+1 issues, project only needed fields, leverage caching, compiled queries, and bulk operations for faster, memory-efficient data access.
  • Azure Cloud Virtualization: Setting Up Your First VM Apr 16, 2025. Understand key virtualization concepts, navigate the Azure portal, and deploy a VM step by step. Perfect for newcomers exploring Azure cloud computing and virtualization basics.
  • Clean Code with Onion ArchitectureApr 11, 2025. Onion Architecture structures code into layers—Domain, Application, Infrastructure, and UI—ensuring separation of concerns, maintainability, and testability by isolating business logic from external dependencies.
  • .NET 8 - System.Linq.Dynamic.Core – using SQL LIKEApr 11, 2025. System.Linq.Dynamic.Core library does not support SQL LIKE, and I added support for it. Added SQL LIKE support to the System.Linq.Dynamic.Core in .NET 8 using a custom patch. Enables dynamic SQL pattern matching in EF8 projects where built-in LIKE functionality was missing.
  • How Do We Set Up Two-Factor Authentication on an Email IDApr 09, 2025. Setting up two-factor authentication (2FA) on your email adds an extra layer of security to protect your account from unauthorized access. This guide walks you through enabling 2FA on your mail ID, ensuring your email remains safe by requiring a password and a second verification step.
  • Simple Best Practices for Code Quality and Performance in .NETApr 07, 2025. Let's break down some best practices for writing good and fast code in .NET, using simple examples and including important principles that anyone can understand.
  • Adding Objects to a Local Database in MAUI .NET 9 [GamesCatalog] - Part 10Apr 02, 2025. Learn how to store game reviews in a local SQLite database using MAUI .NET 9. This guide covers setting up repositories, handling images, adding games, and implementing dependency injection for seamless functionality.
  • Setting Up and Using a Local SQLite Database in MAUI .NET 9 [GamesCatalog] - Part 9Mar 31, 2025. This article covers database integration, CRUD operations, and best practices for storing data locally in a cross-platform mobile application. Follow along to enhance your MAUI app with efficient data management.
  • Mastering Eager Loading in ASP.NET Core Web APIMar 31, 2025. Eager Loading in ASP.NET Core Web API is a technique using Entity Framework Core to load related data (like child entities) alongside the main entity in a single query. It helps improve performance by reducing database round-trip use.Include() and .ThenInclude(). Ideal for situations where related data is always needed.
  • Lazy Loading in ASP.NET Core Web APIMar 26, 2025. Learn how to implement Lazy Loading in ASP.NET Core Web API using Entity Framework Core. This complete guide covers configuration, models, DTOs, controllers, and best practices with a working example.
  • .NET Aspire: Setting Up Your EnvironmentMar 24, 2025. Here in this article, we'll see how to start with .NET Aspire using .NET CLI and Visual Studio 2022 also a deep understanding with the .NET Aspire Project Structure and required files.
  • How to Set Up an EC2 Instance with a Custom AMIMar 24, 2025. A custom AMI in AWS saves time by allowing you to launch EC2 instances with pre-installed software and configurations. Instead of setting up each server manually, you can create an AMI, reuse it for multiple instances, and speed up deployments.
  • SQL Tag Library in Java Server PageMar 21, 2025. JSTL SQL tags are used to access databases and are designed for low-volume Web-based applications.? JSTL SQL tags facilitate database interactions in JSP pages, enabling data source setup, query execution, updates, and transactions through tags like <sql:setDataSource>, <sql:query>, <sql:update>, and <sql: transaction>
  • Explicit Loading in ASP.NET Core Web APIMar 18, 2025. Explicit Loading in ASP.NET Core Web API is a technique used to manually retrieve related data from the database when needed, using LoadAsync() on navigation properties. Unlike eager loading (Include()) or lazy loading, explicit loading provides better control over database queries, improving performance and efficiency. It is useful when related data is conditionally required.
  • Keyset Pagination in Entity Framework Core for Efficient Data RetrievalMar 10, 2025. In this article, I will provide a comprehensive overview of Keyset Pagination in Entity Framework Core, highlighting its benefits, implementation strategies, and a performance comparison with traditional pagination methods
  • The Start and End Date Time should be set based on the UTC, ISO, and Central Time zonesMar 10, 2025. This JavaScript code is tailored for Dynamics 365 CRM, focusing on Date Time fields for Start and End Date Time. It triggers when the Scheduled Start (scheduled start) field changes and ensures that both the start and end Date Time values span the entire day in UTC, ISO, and Central Time.
  • Setting Up SPFx Development Environment Using NVSMar 04, 2025. Setting up a SharePoint Framework (SPFx) development environment using NVS (Node Version Switcher) ensures seamless Node.js version management.
  • Setting Up Microsoft Entra Service Principal for Azure RBAC and Connecting to Fabric SQL DatabaseMar 03, 2025. This article explains creating a Service Principal, assigning role-based access, and securely authenticating to the database, ensuring seamless integration and enhanced security in your Azure environment.
  • Setting Up SSH Login and Post-Login Banners in LinuxFeb 24, 2025. This article provides a step-by-step guide to setting up SSH banners in Linux, including pre-login and post-login banners. It covers configuration changes, testing, and troubleshooting to enhance security awareness and system communication.
  • Entity Framework Core 9: Ultimate Performance Tuning & Best PracticeFeb 21, 2025. Entity Framework is a versatile and powerful ORM, but its performance depends on how it’s used. By following these best practices and leveraging the new features in .NET 9, you can build high-performance applications that scale efficiently.
  • How to Set Up an EC2 Instance as a Web ServerFeb 20, 2025. This article walks you through launching the instance, configuring security groups, installing Apache, and customizing your web page, enabling you to host static websites or dynamic applications on EC2.
  • Entity Framework 9 - GroupBy Throwing ExceptionFeb 19, 2025. Entity Framework 9 (EF9) has a bug where using GroupBy with sorting may throw the exception: "The given key 'EmptyProjectionMember' was not present in the dictionary." Workarounds exist but aren't always practical.
  • Mitigate OWASP A02 2021-Cryptographic Failures Web Security TipsFeb 04, 2025. ADO.NET offers low-level access to databases using SQL commands, while EF is an Object-Relational Mapping (ORM) tool that simplifies database operations by mapping objects to database tables, offering higher-level abstractions.
  • Set up dbt for Fabric SQL DatabaseFeb 04, 2025. Learn how to set up and use the dbt-sqlserver adapter for Microsoft Fabric SQL Database to transform data, run models, and validate results using dbt’s SQL-based transformation framework.
  • Be Careful Using Distinct and OrderBy in EF Core QueriesFeb 03, 2025. Combining Distinct() and OrderBy() in EF Core queries can lead to performance issues. This article explains why and offers solutions for efficient data retrieval.
  • ADO.NET vs Entity Framework: Understanding the DifferencesFeb 03, 2025. This article compares ADO.NET and Entity Framework (EF), two popular data access technologies in .NET. It explores their differences in performance, data manipulation, and development approaches like code-first vs database-first, helping developers choose the right tool for their application needs.
  • Set Up AWS Auto Scaling with Launch Templates for EC2Jan 29, 2025. AWS Auto Scaling simplifies cloud resource management by automatically adjusting the number of EC2 instances based on demand. Using Launch Templates and Auto Scaling Groups, you can ensure optimal performance, cost-efficiency, and high availability.
  • Enhancing Blazor Virtualization for Large Data Sets in .NET 9Jan 29, 2025. Explore how virtualization in Blazor enhances performance for large data sets in .NET 9. Learn techniques to optimize rendering, improve scalability, and build high-performance web apps with Blazor's powerful features.
  • Entity Framework (5-1), With .Net Core MVC, Database-First --- Scaffold-DbContextJan 18, 2025. This article is to discuss the reverse engineering command Scaffold-DbContext by AI.
  • How to Set Up Lifecycle Rules for AWS S3 BucketJan 14, 2025. This article covers transitioning objects to cheaper storage, setting expiration actions to delete old files, and managing versioned objects, helping you save costs and keep your S3 bucket organized efficiently.
  • Understanding Connected Disconnected Scenarios in EF Core MVCJan 06, 2025. This article explains the connected and disconnected scenarios in Entity Framework Core for ASP.NET Core MVC applications. It covers how EF Core handles data in these scenarios, including change tracking, entity states, and managing database contexts.
  • Optimize Relationships Migrations Performance in ASP.NET Core MVCJan 06, 2025. This article covers Entity Framework Core, query optimization, caching strategies, lazy and eager loading, and best practices to enhance your MVC application's efficiency.
  • How to Set Up DynamoDB in AWS?Jan 02, 2025. Amazon DynamoDB is a fully managed, serverless NoSQL database service offering fast performance, scalability, and flexibility. It supports key-value and document data models, with global availability and seamless integration with AWS services.
  • How to Set Up an S3 Bucket for Static Website Hosting in AWSDec 27, 2024. Amazon S3 enables hosting static websites with ease. Configure your bucket by enabling static website hosting, setting an index and error document, and making it public with a bucket policy. Upload your files and access the site using the S3 endpoint URL.
  • How to Set Up the Java Path on WindowsDec 27, 2024. The topic "How to Set Up the Java Path on Windows" covers the essential steps needed to configure your system so that Java commands can be run from anywhere in the command line.
  • How to Set Up and Use AWS RDS for BeginnersDec 27, 2024. Learn how to create an AWS RDS database with this beginner-friendly guide. AWS RDS simplifies database setup and management, supporting engines like MySQL, PostgreSQL, and MariaDB.
  • Essential C# KeywordsDec 25, 2024. This article explains important C# keywords that help in writing more efficient code. It covers keywords like volatile, value, get, set, yield, partial, and where, describing their uses in a simple manner. These concepts are essential for anyone looking to improve their C# programming skills.
  • Modern Featured Entity Framework With SQLite DB Example Dec 11, 2024. Learn to build a .NET Core application using C# async/await and SQLite with Entity Framework. Implement CRUD operations, handle asynchronous tasks, and explore efficient database interaction using Visual Studio 2022.
  • Target Content to a Specific Audience on SharePoint SiteDec 10, 2024. Target Audience is a SharePoint feature that enables personalized content visibility for specific user groups. This is particularly useful for large organizations managing diverse teams, as it allows showing relevant files and folders to the right users.
  • How to Stay Organized with Microsoft Teams CalendarDec 03, 2024. How to Stay Organized with Microsoft Teams Calendar is a guide that explores how to effectively manage your schedule using the built-in calendar feature in Microsoft Teams. The article explains how to sync your Teams calendar with Outlook for seamless scheduling.
  • CRUD Operations with ASP.NET Core API and EF CoreNov 29, 2024. This article provides step-by-step instructions for building a RESTful API, integrating EF Core for database management, and performing essential data operations seamlessly.
  • How to Set Up and Navigate Microsoft TeamsNov 22, 2024. Learn how to set up Microsoft Teams, create an account, and navigate its key features like teams, channels, chat, files, and calendar. This guide helps you improve collaboration, stay organized, and boost productivity.
  • Set Up Hugging Face API for Open Source LLM in Copilot StudioNov 21, 2024. In this article, we will learn the steps to configure, implement, and test Hugging Face models, empowering developers to enhance AI-driven workflows and unlock the potential of LLMs in real time.
  • Setting Default Dates in Power Apps: Using Today(), Date(), Year(), and DateAdd() Nov 14, 2024. Learn how to set default dates in Power Apps using functions like Today(), Date(), Year(), and DateAdd(). This guide explains how to simplify date fields, enhance user experience, and improve app functionality.
  • How to Create a ListView Command Set ExtensionNov 12, 2024. A ListView Command Set extension in SharePoint customizes the command bar or context menu of lists/libraries. It allows adding buttons that trigger custom actions, such as displaying alerts, showing selected items, or integrating with external systems.
  • How to Set Permissions in Microsoft SharePoint Oct 30, 2024. Learn how to set permissions in Microsoft SharePoint effectively to ensure secure collaboration. This guide covers essential concepts, including permission levels, user access control, and managing site and document library permissions.
  • Setting Up Values Without Conditional Checks in Power AutomateOct 13, 2024. In this article, we explore how to set variable values in Power Automate without using conditional checks. We demonstrate two methods: one using traditional condition actions, and another with dynamic expressions to reduce flow nesting.
  • Overview of Minimal APIOct 01, 2024. Minimal API in ASP.NET Core provides a streamlined approach to building HTTP APIs with minimal configuration. Introduced in .NET 6, it allows for lightweight API development without controllers, making it ideal for small projects. This article covers key features, and differences from traditional APIs, HTTP verbs, and routing techniques.
  • Setting Up Kafka In Local using DockerSep 28, 2024. Apache Kafka is a distributed streaming platform used to build real-time data pipelines and applications. It relies on Zookeeper for managing metadata and broker health.
  • Gemini vs. ChatGPT: What Sets Them Apart For Developers?Sep 28, 2024. This article explores the key differences between Gemini and ChatGPT, two AI platforms widely used by developers. It compares their features, coding assistance, API support, and integration capabilities, helping developers choose the right tool for their needs based on performance and flexibility.
  • Understanding Key Concepts in Domain-Driven DesignSep 23, 2024. In this article, we will explore how these concepts drive effective software modeling, ensuring alignment between the business domain and your codebase.
  • Entity Framework Core Code-First Approach with Seed DataSep 09, 2024. It will be beneficial to beginners who are struggling with Entity Framework Core and Creating Code-First Approach. The EF-Core Code-First approach involves creating domain classes first and then generating the database using migrations.
  • Entity Framework (3-0), Entity Data Model (EDM)Sep 07, 2024. This article is to describe Entity Data Model for EF
  • Learn Common Table Expressions (CTE) in SQLSep 04, 2024. Common Table Expressions (CTEs) in SQL are a powerful tool for simplifying complex queries. They allow you to create temporary result sets that can be referenced within a SELECT, INSERT, UPDATE, or DELETE statement.
  • Entity Framework (3), with .Net MVC, Model-FirstSep 01, 2024. This article will discuss Entity Framework with .Net MVC, Model-First approach
  • Entity Framework (3-1), with .Net Console Model-First Aug 31, 2024. This article is to discuss Entity Framework with .Net Console Model-First .
  • Implementation Ajax Calls in ASP.NET Core MVC Aug 27, 2024. Learn how to build a dynamic fleet management system using AJAX in ASP.NET MVC with SQLite as the database provider. This tutorial guides you through creating, managing, and displaying vehicle data in a responsive web application, enhancing user experience with real-time updates.
  • Learn to Set Folder Unique PermissionAug 27, 2024. This feature ensures that only selected users or groups can view, edit, or manage the folder's contents, enhancing security and tailoring access to meet specific needs.
  • Entity Framework (13), with .Net Core Code-First SummaryAug 13, 2024. This is a summary article to discuss .Net Core Entity Framework Code First Approach.
  • Entity Framework (11-1), with .Net Core Razor Pages Code-First (2)Aug 10, 2024. This is a discussion for Entity Framework Razor, the second part.
  • Setting Up Custom Domain in Microsoft 365 via Admin CenterAug 06, 2024. Set up your custom domain in Microsoft 365 by using the Admin Center to add the domain, prove you own it with DNS records, set up the required DNS entries (MX, CNAME, TXT), and adjust email and security settings so everything works smoothly with Microsoft 365.
  • Implementing Pagination and Filtering in ASP.NET Core 8.0 API Aug 06, 2024. Learn how to efficiently implement pagination and filtering in your ASP.NET Core 8.0 API using Entity Framework Core. Enhance performance, scalability, and user experience with server-side data handling techniques.
  • Setting Up Content Deployment in SharePointAug 02, 2024. This guide covers essential setup steps, including configuration settings, deployment processes, and best practices for effective content management and automation in SharePoint.
  • Entity Framework (12), with New .Net Core MVC Code-FirstJul 28, 2024. This article discuss the new .Net Core MVC entity framework, code first module.
  • Database First Approach in .NET CoreJul 25, 2024. Discover the Database First Approach in .NET Core with our comprehensive guide. Learn how to efficiently integrate databases into your application using Entity Framework Core, design robust data models, and manage CRUD operations.
  • Control Form Requirement with Save or Submit ButtonJul 23, 2024. Implement a "Save as Draft" feature to allow users to save and resume incomplete forms. Create buttons with distinct functionalities for saving drafts and submitting forms. Set form fields as mandatory or optional based on user actions, and navigate to different screens depending on the action taken.
  • LINQ to ADO.NET: Enhancing Data Access with Modern QueryingJul 23, 2024. In the evolving world of .NET, querying databases has traditionally been done using ADO.NET, which provides a robust set of classes for data access. However, the introduction of Language Integrated Query (LINQ) has revolutionized the way developers interact with data.
  • Entity Framework (11), with .Net Core Razor Pages Code-FirstJul 22, 2024. This article is discussing Entity Framework with .Net Core Razor Pages Code-First.
  • Setting Up Your First ADO.NET ProjectJul 22, 2024. ADO.NET is a set of classes that expose data access services for .NET Framework programmers. It provides a rich set of components for creating distributed, data-sharing applications. This guide will walk you through setting up your first ADO.NET project, connecting to a database, and executing simple queries.
  • HashSet Class and TreeSet Class in Java CollectionsJul 19, 2024. Explore the HashSet and TreeSet classes in Java Collections Framework. Learn how HashSet uses hashing for fast access and TreeSet maintains sorted order through a Red-Black tree.
  • jQuery DataTable Plugin to Customize Tables in Power Pages PortalJul 19, 2024. How to integrate the jQuery DataTable Plugin into custom tables within the Power Pages Portal. The DataTable Plugin enhances tables by providing features such as pagination, column filtering, efficient search capabilities, and customizable styling.
  • Setting Up a .NET Standard ProjectJul 17, 2024. .NET Standard is a formal specification of .NET APIs that are intended to be available on all .NET implementations. It serves as a base class library that can be used across different .NET platforms, including .NET Core, .NET Framework, Xamarin, and more.
  • Soft Deletes with EF CoreJul 16, 2024. Learn how to implement soft deletes using EF Core in your ASP.NET Core applications. This guide covers the soft deletion pattern, ensuring data integrity while keeping historical records.
  • How to Set Up Copilot in Visual Studio Code in an Angular Project, Metrics and UsageJul 15, 2024. GitHub Copilot is an advanced AI-powered tool integrated into Visual Studio Code, enhancing coding efficiency by suggesting code snippets, automating routine tasks like unit test generation, and optimizing performance.