C# Corner
Tech
News
Videos
Forums
Trainings
Books
Events
More
Interviews
Jobs
Live
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Shiv Sharma(8)
Dashrath Hapani(6)
John Godel(4)
Baibhav Kumar(3)
Sangeetha S(3)
Jignesh Kumar(3)
Praveen Raveendran Pillai(3)
Micheal Xavier A (2)
Cynthia Sathuragiri(2)
Parth Soni(2)
Mohammed Altaf(2)
Jalpa Dhola(2)
Jayraj Chhaya(2)
Tuhin Paul(2)
Tural Suleymani(2)
Hamed Niazmand(2)
Pankajkumar Patel(1)
Nikhil Patil(1)
Praveen Kumar(1)
Pratik Chavan(1)
Mahesh Chand(1)
Deepak Pippal(1)
Akshay Amin(1)
Suryansh Shukla(1)
Sardar Mudassar Ali Khan (1)
Naimish Makwana(1)
Pravesh Dubey(1)
Rinki (1)
Divyansh Gupta(1)
Jay Krishna Reddy (1)
Ashish Bhatnagar(1)
Arun Potti(1)
Ayush Gupta(1)
Sarthak Varshney(1)
Rikam Palkar(1)
Vishal Yelve(1)
Sridharan D(1)
Manoj Kalla(1)
Emanuel Martins(1)
Mark Pelf(1)
Rijwan Ansari(1)
Vijai Anand Ramalingam(1)
Amit Mohanty(1)
Shafaet Hossain(1)
Keyur Pandya(1)
Ishika Tiwari(1)
Mayooran Navamany(1)
Vijay Kumari(1)
Sai Kumar Koona(1)
Subarta Ray(1)
Muzaffar Ur Rahman(1)
Sanjay Kumar(1)
Monish Bansal(1)
Babita (1)
Omar Rodriguez(1)
Rajiv Singh(1)
George (1)
Jihen Hnena(1)
Vinay Ayinapurapu(1)
Devesh Omar(1)
Velladurai (1)
Shikha Tiwari(1)
Ravinder Singh(1)
Adarsh Nigam(1)
Harshad Jaybhay(1)
Jay Kumar(1)
Gurpreet Arora(1)
Geo J Thachankary(1)
Resources
No resource found
How do I load external JavaScript dynamically in Angular?
Aug 18, 2025.
Loading external JavaScript dynamically in Angular is a common need when you want to use third-party libraries, widgets, or tools without hardcoding them into your project. For example, you may want to add Google Maps, a chat widget, or analytics scripts only when required. In this article, we will explain why dynamic script loading useful, different ways is to do it, and the best practices you should follow.
How to save position of the sortable (draggable) widgets
Aug 14, 2025.
Learn how to implement draggable, sortable dashboard widgets in .NET MVC using jQuery UI. Save and load widget order from SQL Server with C#, stored procedures, and a user-defined table type for a personalized UI.
Prompt Engineering in Retail Strategy: Optimizing Merchandising with Context-Aware AI Reasoning
Aug 14, 2025.
Prompt-Oriented Development (POD) in retail transforms AI into a strategic merchandising advisor, delivering data-driven, context-aware recommendations for inventory, pricing, promotions, and multi-channel execution.
Vibe Coding in Retail & eCommerce: Dynamic AI Merchandising Engines
Aug 12, 2025.
Discover how Vibe Coding transforms retail merchandising into a real-time, AI-driven process, using multi-agent systems to detect trends, sync inventory, adjust pricing, and personalize experiences at market speed.
Custom Role Definitions & Dynamic Permission Management in SharePoint with PnPjs (SPFx Guide)
Aug 11, 2025.
This script uses PnP.js to create a custom SharePoint role named "Custom Reviewer" with permissions to view and add comments but without editing core data, defining it via sp.web.roleDefinitions.add().
Understanding AJAX (Asynchronous JavaScript and XML)
Aug 09, 2025.
This article provides a comprehensive introduction to AJAX (Asynchronous JavaScript and XML), explaining what it is, how it works, and why it’s important in modern web development.
What are Python's Key Features and Why is it so Popular?
Aug 08, 2025.
Explore the fundamental features that make Python one of the most popular programming languages in the world. Understand its versatility, simplicity, and robust community support with examples.
How Does Python Manage Memory?
Aug 08, 2025.
Dive into the internal memory management system of Python. Understand how Python allocates, tracks, and frees memory using techniques like reference counting, garbage collection, and memory pools.
What are the data types in JavaScript?
Aug 07, 2025.
This article offers a beginner-to-advanced explanation of JavaScript data types, covering primitives, objects, dynamic typing, and best practices with code examples. Learn how JavaScript handles data under the hood and avoid common pitfalls when working with variable types.
Common Pitfalls in Selenium Automation and How to Avoid Them
Aug 05, 2025.
This article highlights common Selenium automation mistakes like weak locators, hard-coded waits, and poor exception handling, offering best practices such as POM, explicit waits, and data-driven testing for robust, maintainable tests.
Difference Between var, dynamic, and object in C#
Jul 31, 2025.
Learn the exact differences between var, dynamic, and object in C#. This in-depth guide covers syntax, performance, use cases, and practical code examples for each.
CRUD Application using .NET Core and React.js
Aug 01, 2025.
Build a full-stack Employee Management System using ASP.NET Core Web API and React.js with SQL Server. Perform CRUD operations, manage employees, and integrate frontend-backend with Axios and EF Core.
Chapter 8: Introduction to the Document Object Model (DOM)
Jul 30, 2025.
Learn how the DOM allows JavaScript to interact with and manipulate web pages using nodes. This chapter covers element selection, modification, event handling, and dynamic content creation for interactive websites.
Dynamic Form Generation in Angular Using JSON Configuration
Jul 30, 2025.
Create dynamic, reusable forms in Angular using JSON configuration and reactive forms. Easily manage input types, validations, and layout through a flexible, code-driven approach ideal for scalable applications.
What is Dynamic Programming and how to master it
Jul 23, 2025.
Discover the power of Dynamic Programming—an essential algorithmic technique to solve problems efficiently. This article simplifies DP concepts, patterns, and strategies to help you master it with confidence.
Angular Reactive Forms – Dynamic Validation with Real-Time Issue and Fix
Jul 23, 2025.
This article explains how to handle dynamic form validation in Angular Reactive Forms. It shares a real-world scenario where validation rules need to change based on user input like requiring a PAN number for individuals and a company name for organizations. The article highlights a common mistake developers make: forgetting to call updateValueAndValidity() after setting or clearing validators, which causes the form to behave unexpectedly. It walks through the issue, shows the incorrect and corrected code, and provides a reusable custom validator for PAN format. Overall, this article helps developers understand how to implement clean, dynamic validation logic in Angular forms with a practical example and real-time bug resolution.
Effortless Web Page Creation with Section Templates and Real-Time Previews in Modern SharePoint
Jul 21, 2025.
In this blog post, we explore the powerful new features introduced in SharePoint—the ability to add and edit Section Templates. Learn how these tools streamline your web content creation process, making it easier to build, customize, and preview pages in real-time.
Managing Relationships, Migrations, and Performance Optimization in ASP.NET Core MVC
Jul 18, 2025.
This ASP.NET Core MVC project demonstrates how to manage one-to-many relationships using Entity Framework Core, handle code-first migrations, and apply performance optimization techniques such as AsNoTracking, pagination, and in-memory caching.
Events and Event Handlers in Javascript
Jul 17, 2025.
Learn how JavaScript events and handlers make web pages interactive. From mouse clicks to form inputs, master event-driven programming for responsive, user-friendly websites with real-time user interaction.
Godel's Scaffolded Cognitive Prompting (GSCP): A Unified Framework for Reliable AI Reasoning
Jul 14, 2025.
GSCP (Godel’s Scaffolded Cognitive Prompting) is an advanced prompting method combining reasoning, memory, branching logic, and real-time fact-checking to create accurate, explainable, and verifiable LLM outputs.
Data View and LINQ in C# and VB.NET
Jul 07, 2025.
Learn how to fetch unique values from a DataTable using DataView and LINQ in C# and VB.NET. Explore sorting, filtering, and displaying distinct book records with examples compatible with .NET Core and .NET 9.
API Basics: A Beginner's Guide with Examples
Jul 07, 2025.
Learn what an API is with simple analogies, types of APIs (REST, SOAP, GraphQL), and how to use them with JavaScript. Includes examples, tools like Postman, and cool APIs like OpenWeatherMap and NewsAPI.
Filtering, Sorting & Pagination Made Easy in .NET with Sieve
Jul 05, 2025.
Discover how to use the powerful Sieve NuGet package to simplify dynamic filtering, sorting, and pagination in your .NET Web API projects. This article walks through real-world usage with in-memory data, custom filters, and a clean architecture pattern.
Getting Started with REST APIs using Node.js and Express
Jul 02, 2025.
Learn how to build a simple REST API using Node.js and Express. Set up a server, create CRUD endpoints, and test with Postman. Ideal for beginners seeking to grasp the fundamentals of backend development.
What are Props in React Native
Jul 01, 2025.
Learn how to use props in React Native to create dynamic, reusable components. Pass data from parent to child, use PropTypes for validation, and apply defaultProps to ensure a clean and reliable UI behavior.
Routing in Next.js with the Pages Router
Jun 27, 2025.
Learn how routing works in Next.js using the Pages Router. Discover how to create dynamic routes, nested paths, and handle navigation seamlessly in your Next.js apps with minimal configuration.
Mastering LINQ in C#
Jun 25, 2025.
Language Integrated Query (LINQ) is a game-changer in C#. It brings SQL-like data querying capabilities directly into your C# code, making data manipulation more intuitive, type-safe, and readable.
Understanding Select vs SelectMany in LINQ
Jun 19, 2025.
In this article, we are going to learn about the importance of LINQ features of select and SelectMany and the difference between them.
Building Objects in JavaScript
Jun 18, 2025.
JavaScript is an object-based language, which does not Completely support object oriented programming concepts. It provides a mechanism by which user-defined Objects can be created.
FirstOrDefault vs. SingleOrDefault in LINQ: Key Differences and Use Cases
Jun 16, 2025.
In this article, we'll dive into the key differences between FirstOrDefault and SingleOrDefault, examining their behaviours, ideal use cases, and guidance on when to use each one. By the end, you'll gain a better understanding of how to utilize these methods to optimize data queries in your C# applications.
Using Built-in Handlebars Helpers in SPFx: A Practical Guide
May 30, 2025.
When building SharePoint Framework (SPFx) web parts, we often need to show lists or dynamic data. Writing all the HTML with logic mixed in can get confusing. Handlebars helps by separating your layout from your logic.
Templatization in SPFx Using Handlebars Helpers: Dynamic UI Made Simple
May 28, 2025.
The SharePoint Framework (SPFx) provides a powerful way to build modern, client-side web parts for SharePoint. But when building dynamic, data-driven UIs, mixing logic with JSX can quickly become messy and hard to maintain. This is where Handlebars.js comes into play.
How to Configure a "DoNotReply" Email Using a Shared Mailbox in Dynamics 365 CE
May 26, 2025.
In this article, we will learn Step-by-step details to configure the donotreply share mailboxes and send emails in Dynamics 365 CE
PLINQ vs LINQ: Use Cases, and Performance Insights in C#
May 25, 2025.
Discover the key differences between LINQ and PLINQ in C#, including their syntax, execution models, performance benchmarks, use cases, and when to choose parallelism for processing large datasets efficiently.
What’s New in Grafana 12.0
May 08, 2025.
Explore Grafana 12.0's new features like Git Sync, dynamic dashboards, and enhanced drilldowns. Perfect for beginners seeking practical insights.
Rendering Dynamic Content with JavaScript Expressions in React
May 06, 2025.
How React updates the UI when your data changes? Let's explore how to use variables, props, state, and expressions to display dynamic values, all with practical examples.
How to Convert a DataTable to a List of Objects in C#
Apr 27, 2025.
Learn how to convert a DataTable to a List<T> in C#. Explore manual, reflection-based, and LINQ methods for better performance, type safety, and cleaner code. Improve maintainability in modern C# applications.
Excel-Powered CRUD in SharePoint List Using PnP JS and XLSX
Apr 24, 2025.
Utilizing Excel as an information source, PnP JS for SharePoint operations, and the XLSX library for parsing Exceed expectations records, I will walk you how to perform out CRUD (Create, Read, Update, Delete) method in a SharePoint list.
Order of Execution in LINQ Queries
Apr 22, 2025.
This article explains the difference between deferred and immediate execution, outlines the execution order, and shares best practices to write efficient and optimized LINQ queries for real-world applications.
LINQ in C# Tutorial for Beginners: 101 C# LINQ Operations
Apr 17, 2025.
Learn LINQ in C# with 101 essential operations for beginners. Simple examples of filtering, sorting, and joining data to make your code better and faster. Perfect for new C# developers.
Overview of RadioButtonList Control
Apr 15, 2025.
Learn how to use RadioButtonList in ASP.NET WebForms, including its layout types (Horizontal, Vertical, Flow, Table), binding data from C# List, database tables, and manually added items. Also, discover JavaScript integration and best practices.
Django Web framework Google Chart Example
Apr 14, 2025.
Django, a Python web framework using the MVT pattern, simplifies web development with built-in admin, structured views, and templates—demonstrated using a Google Charts example for dynamic data visualization.
Dynamic Styles and Appearance Behavior in MAUI [GamesCatalog] - Part 12
Apr 11, 2025.
This XAML defines a styled "Add Game" button using FontAwesome icons. It binds commands and enables triggers to change text and icon color dynamically based on the button's enabled state.
.NET 8 - System.Linq.Dynamic.Core – using SQL LIKE
Apr 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.
New LINQ Features in .NET 9
Mar 29, 2025.
Discover the latest LINQ features in .NET 9 that enhance query performance, simplify data manipulation, and introduce new methods for better efficiency.
Exploring PLINQ (Parallel LINQ) for Parallel Processing
Mar 29, 2025.
PLINQ (Parallel LINQ) is a powerful feature in .NET that enables parallel processing of queries to improve performance on multi-core processors.
How to Show and Hide Content Using JavaScript
Mar 22, 2025.
Learn how to create dynamic and interactive webpages by showing and hiding content using JavaScript. This detailed guide covers HTML structure, CSS styling, JavaScript functions, and various commands to control the visibility of elements.
How to Use the Sort Function in Power Apps with Dynamic Column Values from a SharePoint List
Mar 22, 2025.
This article covers features, advantages, disadvantages, and step-by-step instructions to enhance your data management and user experience.
Efficiently Splitting SharePoint Column Values Using Power Apps Split Function
Mar 20, 2025.
This article explores how to use the Split function in Power Apps to dynamically extract and display the first and last names from a full name stored in a SharePoint list's people picker column.
Introduction to Copilot Pages
Mar 20, 2025.
Copilot Pages in Microsoft 365 Copilot transforms collaboration by creating dynamic, interactive pages for real-time project updates. It streamlines team communication, workflow automation, and document sharing, reducing email clutter.
Understanding Expressions in C#: Dynamic Code and Query Generation
Mar 19, 2025.
Expressions in C# allow dynamic query generation, runtime compilation, and code transformation using Expression Trees. They are widely used in LINQ, ORM frameworks like Entity Framework, and reflection to optimize performance and enable flexible, data-driven logic.
Learn C#: Refactor Code
Mar 18, 2025.
Refactoring in C# enhances code readability, maintainability, and performance by eliminating redundancy, utilizing LINQ, extracting methods, applying null-coalescing operators, and implementing async/await patterns.
Dynamic Database Web API in .NET 9: Clean Architecture & MediatR for Flexibility
Mar 17, 2025.
A Web API should support multiple database options such as SQL Server, PostgreSQL, MySQL, and SQLite without major code changes. In this article, we will build a .NET 9 Web API using Clean Architecture, Domain-Driven Design (DDD), and MediatR, while implementing dynamic database selection using Entity Framework Core (EF Core).
Select vs SelectMany in C# LINQ
Mar 17, 2025.
In C# LINQ, Select transforms each element of a collection individually, maintaining the original structure, while SelectMany flattens nested collections into a single sequence, combining all sub-elements.
.NET IL Weaving A Powerful Tool for Runtime Code Modification
Mar 10, 2025.
Intermediate Language (IL) Weaving in .NET is a powerful yet underutilized technique that allows modifying compiled assemblies at runtime or build time. This article explores what IL Weaving is, why it's useful, when and where to use it, and how to implement it effectively.
Dynamically Support TLS Versions in .NET
Mar 10, 2025.
Learn how to dynamically support different TLS versions in .NET applications to ensure secure communication. This guide covers configuring TLS settings, enabling version negotiation, and maintaining compatibility across .NET frameworks.
Build Dynamic AI Workflows with Lambda and Bedrock Prompt Flow
Mar 06, 2025.
This article shows you how to integrate AWS Lambda with Amazon Bedrock Prompt Flow to create an intelligent data retrieval and processing system. This solution helps you automate data processing and generate user-friendly summaries, improving efficiency and user experience.
Understanding IEnumerable, ICollection, IList, and List
Mar 02, 2025.
In .NET, collections like IEnumerable, ICollection, IList, and List help manage data efficiently. IEnumerable allows iteration, ICollection supports modifications, IList enables indexing, and List provides dynamic resizing and advanced methods.
Various Methods to Count Occurrences of Each Number in Array or List
Feb 17, 2025.
In this article, I'll show you different ways to count how often a number appears in C#. We'll look at methods like LINQ, Dictionary, GroupBy, and Parallel.ForEach, and see which ones work best for small and large datasets.
Dynamic CORS Setup in .NET Core with JSON Configuration
Feb 09, 2025.
Learn how to configure CORS dynamically in .NET Core 9 using appsettings.json. Manage multiple allowed origins easily, enhance security, and improve flexibility for different environments like development, staging, and production.
Dynamic Breadcrumb Navigation with jQuery
Feb 03, 2025.
Enhance user experience with dynamic breadcrumbs! Automate navigation using jQuery, improve SEO, and simplify site hierarchy with lightweight, responsive design. Perfect for seamless navigation on dynamic websites.
Dynamic Menus in Layout Page Using Sessions in ASP.NET Core 6
Jan 31, 2025.
Store dynamic menu data in session and display it across multiple pages using the layout page in ASP.NET Core 6.
How to Concatenate Dynamic Column Values in Power Apps
Jan 23, 2025.
Learn to use the Concatenate function in Power Apps to combine dynamic column values in a gallery. Simplify data presentation, reduce redundancy, and enhance user experience with this versatile tool for custom business applications.
Understanding the Override Function in C#
Jan 23, 2025.
The override keyword in C# allows a derived class to modify or extend a method defined in a base class. It supports polymorphism, inheritance, and encapsulation, enabling flexible and reusable code with dynamic method binding at runtime.
How to Implement Search Function in PowerApps
Jan 22, 2025.
Learn how to implement a dynamic search function in Power Apps to filter data from sources like SharePoint. This article covers step-by-step instructions for adding search features, improving usability, and boosting app performance.
Learn Quantifier Operations in LINQ
Jan 21, 2025.
Quantifier operations in LINQ simplify logical evaluations of collections using methods like `Any`, `All`, and `Contains`. They enhance readability, reduce boilerplate, and support efficient data validation and filtering.
Dynamic Rules Engine for User Workflows in .NET Financial Apps
Jan 17, 2025.
Implement a dynamic .NET Rules Engine for financial workflows with user-specific rules. Customize logic based on roles, transactions, and account types. Enable fraud detection, compliance, and real-time audit logging for scalability.
Print Fibonacci Series in Java Using Different Methods
Jan 17, 2025.
This article explores four methods to generate the Fibonacci series in Java: iteration, recursion, dynamic programming (memoization), and Java streams, offering optimized, modern, and functional approaches for various scenarios.
Understanding JIT Tiers, Dynamic PGO, and AOT
Jan 08, 2025.
This article explains how JIT compilers optimize code with tiered compilation, profile-guided optimization (PGO), and Ahead-of-Time (AOT) compilation in .NET. It also demonstrates enabling AOT in a Visual Studio application.
Apply UI to Enhance Choice Fields with Conditional Formatting
Jan 02, 2025.
Enhance SharePoint lists with UI Conditional Formatting. Use JSON to customize Choice Fields, changing colors, icons, and text dynamically based on values like "Done" or "In progress" for better data visualization.
LookUp Function in Power Apps for Efficient Data Retrieval
Dec 31, 2024.
The LookUp function in Power Apps allows efficient data retrieval by searching for a single record in a data source based on a condition. It's ideal for scenarios like pulling specific employee details from a SharePoint list.
Dynamic Pricing in E-Commerce: Maximizing Revenue with C# Algorithms
Dec 23, 2024.
Dynamic pricing allows businesses to adjust product prices in real time based on factors like demand, competition, and inventory levels. This article explains dynamic pricing, its benefits, and a basic C# implementation of a pricing algorithm.
New LINQ Methods in .NET 9: Index, CountBy, and AggregateBy
Dec 11, 2024.
In this article, I will showcase the new methods: Index, CountBy, and AggregateBy. These powerful additions in .NET 9 bring significant enhancements to LINQ, aimed at improving your coding experience and simplifying data manipulation tasks.
C# Foundation - Implicitly Typed Variables
Nov 28, 2024.
Implicitly typed variables in C#, declared using the var keyword, let the compiler infer the data type from the initialization expression. This improves code readability and reduces verbosity, especially with complex types.
Azure Function to Read Incoming Message in Twilio
Nov 27, 2024.
Learn how to create an Azure Function that reads incoming SMS messages from Twilio. This tutorial covers the setup of Azure Functions, integrating with Twilio's API, and processing incoming messages using webhooks.
.NET 9 CountBy: A New LINQ Powerhouse
Nov 20, 2024.
.NET 9 introduces the CountBy method, a powerful addition to LINQ that enhances querying capabilities. This feature allows developers to count elements based on specified conditions efficiently.
Use of ItemsControl in WPF C# for Flexible UI Design
Nov 19, 2024.
This guide explores data binding, templates, and customization techniques for crafting sophisticated layouts. Enhance your WPF skills and unlock the full potential of ItemsControl for efficient UI development.
Build Testimonial Carousel in React with Dynamic Animations
Nov 15, 2024.
Create an interactive testimonial carousel in React to showcase client feedback effectively. This component offers smooth animations, auto-advancing slides, responsive design, and dynamic star ratings using Lucide Icons.
Loading Nested JSON File Data in Dropdown ASP.NET
Nov 14, 2024.
Learn how to load and bind nested JSON data to a dropdown in ASP.NET, covering both client-side and server-side techniques for dynamic data binding and efficient JSON parsing in web applications.
Understanding IEnumerable In C#
Nov 14, 2024.
IEnumerable in C# is an interface that defines a standard way to iterate over a collection of objects. The IEnumerable interface in C# provides a standard, efficient way to iterate over collections using foreach, enabling cleaner, more readable code, and LINQ integration.
Explaning AWS Lambda Function
Nov 12, 2024.
AWS Lambda is a service that computes the code without any server. It doesn't need any server running, so It is said to be serverless computer. The code is executed based on the response of events in AWS services, such as adding/removing files in the run/stop ec2 instances S3 bucket and updating Amazon DynamoDB tables.
Build an Interactive Task Manager
Nov 12, 2024.
Create a simple To-Do List app using HTML, CSS, and JavaScript. Add, edit, delete, and mark tasks as done while storing them in local storage. Learn how to structure, style, and add interactivity to your web app effectively.
Creating a CQRS Architecture in .NET Core 8
Nov 04, 2024.
This guide outlines a practical implementation of the CQRS (Command Query Responsibility Segregation) architecture using C# and MediatR, emphasizing the separation of read and write operations for better scalability and maintainability.
How Select and SelectMany Works in C#
Oct 26, 2024.
Learn key differences, practical use cases, and examples that demonstrate how these methods simplify data manipulation, making it easier to work with nested and complex data structures in C#.
Database Dictionary (1-2-1) --- Using Dynamic SQL Script
Oct 20, 2024.
This article will discuss when to use dynamic SQL Script and the conditions.
' Group By ' with Power Automate
Oct 16, 2024.
This process involves creating an instant flow to send an email to each user with a table of applications they have created. By listing rows from the "User Application" table, using union and filter actions, we group applications by user, create an HTML table, and send personalized emails.
Setting Up Values Without Conditional Checks in Power Automate
Oct 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.
Real-World Expression Trees: Dynamic Filtering in C# with Minimal API
Oct 06, 2024.
This article explores the practical use of expression trees in C# by building an ASP.NET Core web API with dynamic filtering functionality. It demonstrates how to construct flexible queries using expression trees, allowing filtering by properties such as `IsActive`, `Category`, `Name`, and `Price` over a product database.
How to Use a Cursor in SQL?
Oct 03, 2024.
A cursor in SQL is a database object that allows row-by-row processing of query results. It enables you to iterate through a result set, perform operations on each row, and manage data more efficiently in certain scenarios.
Quick Way to Generate Reports in .NET Core API
Sep 30, 2024.
This guide covers essential tools and techniques for creating PDF, CSV, and other formats in real time. Ideal for developers looking to implement efficient report generation with .NET Core for streamlined data presentation.
How Func Delegates Work in LINQ
Sep 27, 2024.
In this article, we explore how Func delegates operate within LINQ (Language Integrated Query) in C#. Func delegates enable concise and powerful data manipulation by allowing developers to pass methods as parameters.
Getting Dynamic Input Value and Post to the AJAX function
Sep 26, 2024.
This article explores how to dynamically retrieve input values from a user interface and send them to an AJAX function for processing. It covers essential concepts like event handling and asynchronous requests, utilizing JavaScript and jQuery.
Solid Introduction to Expression Trees in C#
Sep 26, 2024.
This article provides a comprehensive introduction to Expression Trees in C#. You'll learn about their structure, how they represent code as data, and their applications in LINQ queries.
The implementation of Double Linked List with C Programming
Sep 26, 2024.
A doubly linked list is a dynamic data structure in C that allows bidirectional traversal of elements using pointers. This implementation covers node creation, insertion, deletion, and traversal operations.
Dynamic SharePoint Column Creator with jQuery
Sep 24, 2024.
Unlock the power of SharePoint with our Dynamic SharePoint Column Creator using jQuery! This innovative tool allows users to effortlessly create and customize columns in SharePoint lists.
Hide OOB Share Button in Model-Driven Apps
Sep 23, 2024.
Learn how to control app behavior, personalize the user interface, and enhance the overall user experience in Dynamics 365 and PowerApps using simple customization techniques.
What are Different File Extension in .NET
Sep 23, 2024.
This article explores key file extensions in ASP.NET, including.ASPX for web pages, which combine HTML and server-side code to generate dynamic content, and .CS for C# source files, essential for defining application logic.
Tracking Exports to Excel in Dynamics 365 CRM with Email Alerts
Sep 22, 2024.
This guide covers the process of monitoring data exports, configuring workflows, enabling real-time alerts, and ensuring efficient data management and timely updates in your CRM system.
Exploring the Performance Boosts in .NET 9
Sep 20, 2024.
.NET 9 introduces key performance improvements, including Native AOT for faster startup times and reduced memory usage, optimized garbage collection, enhanced threading for multicore systems, and HTTP/3 support for improved network performance.
POCO to Dictionary Conversion Techniques in C#
Sep 16, 2024.
This article explores five methods for converting a C# POCO to a dictionary using reflection, LINQ, JSON libraries, and ExpandoObject, comparing their performance through Benchmark.NET to find the best approach.