TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About LT
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Abiola David (8)
Ajay Kumar (6)
Vishal Yelve (4)
Jalpa Dhola (3)
Shikha Tiwari (3)
Jignesh Trivedi (3)
Lokendra Singh (3)
Vijay Yadav (3)
Tural Suleymani (2)
Rohatash Kumar (2)
Rohini Parade (2)
Vignesh Kumar (2)
Sanjay Kumar (2)
Priya Chavadiya (2)
Abhishek Yadav (2)
Suraj Vishwakarma (2)
Keyur Pandya (2)
Ayush Gupta (1)
Vijay Pratap Singh (1)
Bohdan Stupak (1)
Hadshana Kamalanathan (1)
Jihen Hnena (1)
Jochen Bartlau (1)
Krishnan LN (1)
Rasul Huseynov (1)
Nitin Pandit (1)
Amol Sarkate (1)
Rahul Kumar Saxena (1)
Harshit Vyas (1)
Shiv Sharma (1)
Shubhankar Banerjee (1)
Muhammad Imran Ansari (1)
Devesh Omar (1)
Sourav Kayal (1)
Abhimanyu K Vatsa (1)
Mohammad Hussain (1)
Arun Potti (1)
Hardik Dhankecha (1)
Dheeraj kumar (1)
George (1)
Madhukar Krishna (1)
CSharp TV (1)
Aman Gupta (1)
Raj Kumar (1)
Shantha Kumar T (1)
Konga Mounika (1)
Sonia Bhadouria Vishvkarma (1)
Sarthak Varshney (1)
Gowtham K (1)
Anoop Kumar Sharma (1)
Sreenath Kappoor (1)
Mahesh Chand (1)
Ananthakrishna V (1)
Sourabh Somani (1)
Kaviya Balasubramanian (1)
Tahir Ansari (1)
Safyan Yaqoob (1)
Shilpa Tanwar (1)
Jay Krishnareddy (1)
Anupam Maiti (1)
Velladurai (1)
Jaimin Shethiya (1)
Nikunj Satasiya (1)
Jay Kumar (1)
Sagar Pardeshi (1)
Jitendra Mesavaniya (1)
Related resources for LT
No resource found
Map, Filter and Reduce in TypeScript with Examples
10/30/2024 5:47:41 AM.
This guide provides a comprehensive overview of these essential functions, complete with practical examples to illustrate their use in real-world applications. Enhance your coding skills and streamlin
How to Create and Use Key Vault References in .NET Core Web API
10/28/2024 4:14:04 AM.
Azure App Configuration allows your application to use Key Vault references by creating keys that point to values stored in Key Vault. Rather than storing sensitive data directly, App Configuration us
Explaining IAuthorizationFilter in .NET Core
10/27/2024 12:10:00 PM.
In this article, we delve into the IAuthorizationFilter interface in .NET Core, exploring its role in implementing authorization logic for web applications. We cover how to create custom filters, mana
Add Multiple Users to SharePoint Group together in one API call
10/26/2024 6:33:17 AM.
This article outlines how to streamline adding multiple users to a SharePoint Group using Power Automate. By leveraging a single HTTP request, users can efficiently batch add members to a group.
Compiling Multiple Files to Build an Application
10/22/2024 10:46:04 AM.
This article explains how to compile multiple C files into a single executable using the C compiler. It covers two approaches: compiling multiple files with the cc command or using the #include direct
Using Span<T> To Improve Performance Of C# Code
10/21/2024 10:13:00 AM.
To enhance application performance, reducing IO calls and utilizing stack allocation is crucial. Leveraging value types and the Span<T> structure in C# allows efficient memory management and imp
Activate Server-Side Encryption for Azure Disks with Customer Keys
10/21/2024 6:21:07 AM.
Azure Disk Storage offers server-side encryption (SSE) with customer-managed keys, allowing users to control encryption for managed disks. By utilizing Azure Key Vault, users can manage access and enh
' Group By ' with Power Automate
10/16/2024 5:52:26 AM.
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 an
Gitea - an Open Source, Self Hosted GitHub Alternative
10/16/2024 4:51:49 AM.
Gitea is a lightweight, self-hosted Git server that offers features similar to GitHub, including issue tracking, pull requests, and a web-based interface. It's ideal for organizations needing data
Using XML and XSLT
10/15/2024 11:27:26 AM.
XSLT (XML Stylesheet Transformation) is a powerful language used for converting XML documents into various formats. It utilizes an XSLT processor to parse input XML and the associated stylesheet, exec
Validation of Complex Objects in Multi-Lingual Environment Using DynamicVNET With ASP.NET Core
10/14/2024 9:58:53 AM.
DynamicVNET is a lightweight, rule-based validation library for .NET applications, designed to validate POCOs while adhering to the Single Responsibility Principle (SRP). It integrates seamlessly with
Explaining IResultFilter in ASP.NET Core
10/14/2024 6:03:23 AM.
This article explores the ASP.NET Core `IResultFilter`, which allows custom logic execution before and after an action result. It discusses advantages and disadvantages and includes an implementation
Filters in ASP.NET MVC
10/11/2024 12:26:53 PM.
In this article you will learn about Filters in ASP.NET MVC 5.0. ASP.NET MVC Filters are used to inject extra logic at the different levels of MVC Framework request processing. Filters provide a way f
Multiple File Upload in ASP.NET With Example
10/11/2024 12:25:08 PM.
The FileUpload control in ASP.NET enables users to upload files to the server easily. It features a text box and a browse button for file selection. The control supports multiple file uploads when set
Multiple Diagrams Per Model With Entity Framework and Visual Studio 2013
10/8/2024 9:03:31 AM.
The Model First Approach in Entity Framework allows users to create and manage entity models using the EDMX file. It features a design surface for editing entities, a model browser for navigation, and
Read Multiple PARQUET Files from GCS to Azure SQL Database using Azure Data Factory
10/7/2024 4:56:25 AM.
In this Data Engineering episode, I covered how to read multiple sales parquet files resident in Google Cloud Storage to Azure SQL Database leveraging Azure Data Factory.
Real-World Expression Trees: Dynamic Filtering in C# with Minimal API
10/6/2024 7:51:48 AM.
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 expr
Uploading Multiple Files With ListBox in ASP.NET
10/3/2024 11:40:19 AM.
This article explains how to upload multiple files using a ListBox control in ASP.NET. Unlike the standard FileUpload control, which supports single file uploads, this method combines FileUpload with
Uploading Multiple Files in ASP.NET 2.0
10/1/2024 9:05:24 AM.
The FileUpload control in ASP.NET 2.0 allows users to upload files from a web page. By using multiple FileUpload controls and a button, users can select and upload several files at once. The files are
How to handle multiple file upload dynamically
10/1/2024 8:25:24 AM.
This guide covers essential techniques for managing bulk file uploads in web applications using JavaScript, ensuring seamless file handling and improved user experience. Perfect for developers looking
What is the Filter Function in Power Apps
9/30/2024 11:14:40 AM.
The Filter function in Power Apps allows users to narrow down data sets by applying specific criteria. It is essential for creating dynamic applications that require user input to display relevant inf
Why Developers are Choosing Alchemy for Blockchain Projects?
9/30/2024 9:50:47 AM.
Learn how Alchemy simplifies blockchain development with multi-chain support, real-world use cases, and an easy-to-use dashboard for building and managing dApps effortlessly.
Explaning Joins in Azure Cosmos DB
9/30/2024 8:45:05 AM.
Azure Cosmos DB enables seamless querying using SQL-like syntax, allowing joins within JSON documents. This feature facilitates data retrieval from arrays and nested objects within a single container,
How to Use Scoped Service from Singelton Service in .NET Core
9/30/2024 5:43:28 AM.
This guide explains how to resolve scoped services from a singleton service, highlighting best practices to avoid common pitfalls and ensure proper resource management in your application.
Bind Data to Multiple Models From View in MVC
9/27/2024 10:22:10 AM.
We'll cover techniques for utilizing ViewModels to facilitate seamless data transfer between the user interface and server-side logic, ensuring smooth form submissions, data validation, and improv
Nested Collection Models in MVC to Add Multiple Phone Numbers - Part 1
9/27/2024 10:08:34 AM.
This article explains how to create an MVC application using the Nested Model concept, allowing users to add or remove multiple phone numbers for an employee. It covers database setup, model creation,
Explaning MongoDB Logical Operators
9/24/2024 6:30:42 AM.
In MongoDB, logical operators are essential for constructing complex queries by combining multiple conditions. Key operators include $and (for all conditions), $or (for any condition), $not (to negate
Creating Visually Engaging Dashboards: Ultimate Power BI Theme
9/23/2024 7:07:10 AM.
The Hussain PBI Theme enhances data presentation in Power BI with a harmonious color palette and modern typography. It features customizable visual styles for clarity and engagement, including vibrant
Advanced ADF: Integrate Multiple Category of Files Leveraging FILTER and other Activities
9/23/2024 6:37:08 AM.
In this episode, I am going to walk you through how to integrate multiple category of files in ADLS Gen2 to Azure SQL Database via Azure Data Factory data pipeline activities focusing on filter and o
Get First Row from Dataverse Table in Power Automate
9/22/2024 12:32:16 PM.
Learn how to retrieve the first row from a Dataverse table using Power Automate. This guide walks you through creating a flow, filtering contacts with emails, and using expressions to extract the firs
Database Backup With Compression in SQL Server
9/20/2024 9:18:22 AM.
This article explains how to perform database backup compression in SQL Server 2012 using SQL Server Management Studio or a Transact-SQL statement. It provides a step-by-step guide to visually create
MongoDB Comparison Operators
9/20/2024 7:46:04 AM.
Learn how to use MongoDB comparison operators like $eq, $ne, $gt, $lt, and more in this comprehensive guide. Master querying and filtering data with practical examples and best practices for efficient
Download Multiple Excel Files via Web API .NET and Angular
9/20/2024 6:02:37 AM.
To export multiple Excel files, various approaches can be used, including downloading a zip file, creating multiple worksheets in a single Excel file, or calling APIs multiple times to retrieve files.
Download Multiple Excel Files via Web API and Angular
9/20/2024 5:59:28 AM.
In this article, we will learn how to implement file streaming in the backend and trigger downloads via Angular's HTTPClient, enabling efficient file handling across platforms.
Cascading Drop-downs in Canvas Power App
9/19/2024 1:40:38 PM.
Learn how to create dynamic, dependent drop-downs that filter options based on user input, improving form efficiency and user experience. Perfect for Power Apps developers looking to streamline data e
Block IP Address In ASP.NET Core Web API
9/19/2024 10:04:00 AM.
This article will explain that how to block IP address for particular time frame with multiple request. It will restrict user to enter into controller if user hit system multiple times during fixed ti
Update Taxonomy Metadata Field with Multiple Values Using Logic App
9/19/2024 5:12:36 AM.
This guide covers automating metadata management, configuring Logic Apps to handle dynamic updates, and simplifying the process of managing SharePoint Taxonomy Metadata fields efficiently.
Multi-Threading (5), --- Summary
9/17/2024 12:24:11 PM.
This article will summarize the multi-threading.
Type In Hindi Or Any Other Language Using Google Translate
9/17/2024 10:41:53 AM.
With Google Translate, you can easily type in Hindi or any other language without needing a specialized keyboard. Just enter text in your preferred language, and Google will translate or convert it in
The Ultimate Full Stack Framework for 2024: Remix
9/17/2024 5:55:43 AM.
In this video, you will learn about the Remix: Ultimate Full Stack Framework for 2024
An overview of the Task Parallel Library (TPL) in C#
9/17/2024 5:07:16 AM.
The Task Parallel Library (TPL) is a collection of public types and APIs within the .NET framework that facilitates the integration of parallelism and concurrency into applications.
Explaning IActionFilter in ASP.NET Core
9/16/2024 10:52:30 AM.
This article explains ASP.NET Core's `IActionFilter`, highlighting its use in handling cross-cutting concerns like logging, validation, and authentication while outlining its advantages and potent
Explaning IExceptionFilter in .NET Core
9/16/2024 10:41:53 AM.
This article explores ASP.NET Core's `IExceptionFilter`, which enables centralized exception handling. It highlights its advantages, such as separation of concerns, consistent error responses, and
Introduction to Office Script
9/13/2024 5:26:23 AM.
Office Scripts is a feature in Microsoft Excel that allows you to automate repetitive tasks using JavaScript. This can significantly streamline your workflow by enabling you to create custom scripts t
Array of Structure and Structures with in a Structure
9/13/2024 5:23:54 AM.
Explore the concept of arrays of structures and structures within structures in data modeling. Understand how to manage complex data by nesting structures, utilizing multidimensional arrays, and creat
Entity Framework Core Feature - Global Query Filters
9/12/2024 5:59:39 AM.
Learn how to implement Global Query Filters in Entity Framework to apply automatic filters at the model level. This feature is commonly used for scenarios like soft delete and multi-tenancy, ensuring
Getting Started With Apache Kafka: Introductory Guide
9/11/2024 3:36:55 AM.
Apache Kafka is a distributed event streaming platform that enables real-time data processing and integration across microservices. It supports publishing and subscribing to streams of records, storin
Looping With Ng-repeat in AngularJS
9/10/2024 10:19:21 AM.
Learn how to display data in AngularJS using ng-init and ng-repeat directives. ng-repeat instantiates an element for each item in a collection, while ng-init allows evaluation of expressions in the cu
Arrays of Strings in Multidimensional Arrays
9/9/2024 5:39:16 AM.
Multidimensional arrays store data in multiple levels, enabling complex data structures like arrays of strings. This guide explores how to create, access, and manipulate string arrays within multidime
SQL Data Analysis Using Azure Synapse Built-in Serverless Pool
9/6/2024 6:06:58 AM.
In this video, I demonstrated how to perform SQL Data Analysis in Azure Synapse Analytics using built-in serverless pool.
SQL Subqueries: Correlated, Scalar, and EXISTS/NOT EXISTS
9/4/2024 9:30:54 AM.
Subqueries in SQL are powerful tools for complex queries. They include correlated subqueries, which depend on the outer query’s results, scalar subqueries that return single values, and EXISTS/NOT EXI
Learn Common Table Expressions (CTE) in SQL
9/4/2024 6:25:07 AM.
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 DE
Filter and Display New Employees in Power Apps with Microsoft Graph
9/3/2024 5:05:57 AM.
Create a Power Apps app that lists new employees who joined this year by using the Microsoft Graph API. With a button click, retrieve and display user data filtered by hire date in a gallery. This app
What is Azure OpenAI Content Filter?
8/30/2024 10:51:26 AM.
Azure OpenAI Content Filter is a tool by Microsoft Azure designed to enhance content moderation and safety. It leverages OpenAI’s advanced language models to identify and filter inappropriate or harmf
Dynamic LINQ with Gridify in .NET
8/30/2024 6:07:05 AM.
Learn how to leverage Gridify to simplify complex filtering, sorting, and pagination tasks. Perfect for developers seeking to optimize and extend their use of LINQ in C# applications.
Read Multiple ADLS Gen2 CSV Files using SAS in Databricks Notebook
8/30/2024 4:45:03 AM.
In this video, I demonstrated how to read Multiple ADLS Gen2 CSV Files using SAS in Databricks Notebook.
Resolving Race Conditions and Critical Sections in C#
8/28/2024 9:49:18 AM.
A race condition in C# occurs when multiple threads access shared data simultaneously without proper synchronization, leading to unpredictable and incorrect results. This tutorial covers how to identi
Default Implementation in C# Interfaces
8/28/2024 9:00:12 AM.
This article details creating a `StringUtils` utility class in Java to centralize common string operations. It covers methods for checking if a string is alphanumeric with underscores or consists sole
What is Databricks Delta Live Tables (DLT)
8/28/2024 5:37:42 AM.
Databricks Delta Live Tables (DLT) is a powerful tool for automating data pipelines, ensuring data quality, and simplifying ETL processes. DLT allows real-time data processing and supports both batch
CSS Image Opacity/Transparency
8/28/2024 5:14:19 AM.
This article covers how to create transparent images and text boxes using CSS. It demonstrates using the 'opacity' property for images and hover effects, and shows how to place text in a semi-
VMware Tanzu August 2024 Updates
8/28/2024 5:03:52 AM.
Discover the latest VMware Tanzu updates for August 2024, including new console, security enhancements, and key product releases.
SQL Data Analysis using Azure Synapse Built in Serverless Pool
8/28/2024 4:28:22 AM.
In this Azure Data Engineering episode, I discussed how to perform SQL Data Analysis using Azure Synapse Built in Serverless Pool
Azure Advisor recommendation using Resource Manager REST API
8/27/2024 11:03:18 AM.
Azure Advisor is a digital assistant that optimizes Azure deployments by offering recommendations to enhance cost, performance, reliability, and security. Learn how to pull Azure Advisor reports, conf
Building an ASP.NET Core Web API with Gridify
8/22/2024 5:31:08 AM.
This guide walks you through setting up a .NET Core API, integrating Gridify for dynamic query handling, and enhancing your application's performance with clean, maintainable code.
HandleError Action Filter In ASP.NET MVC
8/21/2024 8:43:20 AM.
In this article, you will learn how to handle an error using HandleError Action Filter in ASP.NET MVC.
Learn Use of Converters in WPF C#
8/21/2024 3:23:31 AM.
In WPF, IValueConverter and IMultiValueConverter are used to transform data for UI binding. IValueConverter converts single values (e.g., boolean to visibility), while IMultiValueConverter handles mul
Introduction of Microservices
8/16/2024 5:19:21 AM.
Microservices design software as collection of small, independent services, each handling a specific function. They allow independent deployment, scalable resources, and diverse technologies. Benefits
Azure Data Factory: Append and Convert Multiple CSV Files To Parquet File
8/13/2024 11:16:36 AM.
In this Data Engineering episode, I was you through to to append and convert multiple CSV Files to Parquet File leveraging the Azure Data Factory
Creating a Custom Date Picker in jQuery with Validation
8/13/2024 5:44:33 AM.
This article demonstrates how to create a custom date picker in jQuery with validation. It covers setting up HTML text boxes for date input, initializing jQuery Datepicker with date range constraints,
Understanding Filters in .NET Core with Examples
8/12/2024 10:23:14 AM.
ASP.NET Core filters enable developers to run custom code at various stages of the request pipeline, supporting tasks like logging, authentication, and error handling. They enhance modularity and main
What are small language models (SLM) in AI?
8/12/2024 8:40:23 AM.
This article explains what a small language model (SLM) is, what are its benefits, and when and why companies should create and implement their own SLMs.
The Future of Gen AI in Personalized Healthcare
8/12/2024 4:45:48 AM.
Explore the cutting-edge applications of Generative AI in personalized healthcare. This article delves into how Gen AI is transforming diagnostics, treatment planning, and patient engagement, offering
Multilevel Toggle Responsive Navigation Menu
8/9/2024 9:48:15 AM.
This article guides you through creating a multilevel toggle responsive navigation menu using HTML, CSS, and jQuery. It includes a mobile-friendly design with nested dropdowns and a hamburger menu tog
Add In Built Web Parts In SharePoint Modern Site Page
8/9/2024 9:47:22 AM.
Learn how to enhance your SharePoint modern site pages by adding Yammer and Site Activity web parts. These modern pages support rich multimedia and are responsive across devices. Follow steps to open
Explain Multiprocessing in Python
8/9/2024 5:40:54 AM.
Explore Python's multiprocessing module to achieve parallelism and optimize CPU-bound tasks. Learn how to create and manage processes, utilize process pools, and improve performance through concur
Azure Data Factory: Clean and Transform Multiple Data using Dataflow
8/8/2024 4:14:34 AM.
In this Data Engineering episode, I covered how to use Azure Data Factory Dataflow to read, appends multiple CSV files from ADLS Gen2, clean and transform the data and sink to the Azure SQL Database f
Creating Custom Authorization Policy Provider In ASP.NET Core
8/7/2024 10:46:39 AM.
Learn how to implement custom authorization policies in ASP.NET Core using IAuthorizationPolicyProvider. Discover how to create policies dynamically based on runtime information, register them with a
Understanding Multithreading with the Thread Class in C#
8/6/2024 10:12:49 AM.
Learn how to implement multithreading in C# using the Thread class. This guide covers creating and managing threads, passing parameters, handling exceptions, and using Task for simplified parallelism.
Implementing Pagination and Filtering in ASP.NET Core 8.0 API
8/6/2024 6:40:33 AM.
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 handli
How to Upload a File to Amazon S3 with NodeJS
8/6/2024 6:16:29 AM.
Implementing pagination and filtering in an ASP.NET Core 8.0 API with Entity Framework Core (EF Core) is crucial for efficiently managing large datasets. This guide covers setting up the project, crea
Multithreading in C# Task Creation Using Loop
8/6/2024 5:04:09 AM.
This article introduces multithreading in C# using the Task class from the Task Parallel Library (TPL). It explains creating and executing tasks serially within a loop, ensuring tasks are completed se
Priciples of Scalable System Design
8/5/2024 9:50:14 AM.
The principles of scalable system design focus on creating architectures that can efficiently handle increasing loads. Key aspects include load balancing, fault tolerance, and performance optimization
How to Implement Localization in Next.js?
8/5/2024 4:00:36 AM.
. This guide covers the basics of internationalization (i18n), setting up Next.js for multiple languages, managing translations, and dynamically rendering content based on the user's language pref
Host-Named Site Collections in SharePoint
8/2/2024 8:08:23 AM.
This article explains host-named site collections in SharePoint, detailing their advantages, limitations, and the process for creation. Host-named site collections provide unique DNS names, facilitati
SharePoint Server Not Redirecting to Default Page Needs Full URL
8/2/2024 8:05:48 AM.
SharePoint Server not redirecting to the default page can be frustrating, especially when it requires a full URL to access the site. This issue often stems from configuration problems or redirection s
Best practices for API Error Handling in .Net
7/31/2024 9:29:19 AM.
Explore best practices for API error handling in .Net, covering essential techniques for robust and resilient APIs. Learn how to effectively manage exceptions, log errors, and implement fault toleranc
Design A High Availability Application With Azure App Service
7/29/2024 8:32:55 AM.
This article outlines creating a high-availability app using Azure PaaS, focusing on scalability and performance. It covers defining availability metrics (uptime, MTTR, MTBF, RTO, RPO), designing faul
Exception Filters in ASP.NET Core
7/25/2024 12:17:08 PM.
Exception handling in ASP.NET Core is crucial for application stability. Exception filters provide a centralized way to manage errors, log them, and return custom responses, enhancing maintainability
Building Dynamic Timers in React Managing State and Effects
7/25/2024 12:12:10 PM.
This example demonstrates managing dynamic Timer components in React. Each Timer independently tracks button clicks and elapsed time, with start, pause, and reset functionality. The ExampleComponent a
UNION vs UNION ALL in SQL Server
7/24/2024 9:28:49 AM.
The SQL UNION operator combines the results of two or more SELECT statements, removing duplicate rows. In contrast, UNION ALL combines results while retaining all duplicates. UNION may impact performa
Securing Sensitive Data with Azure Key Vault in .NET Core
7/23/2024 10:32:58 AM.
Integrate Azure Key Vault with your .NET Core application to securely manage sensitive data like passwords and API keys. Azure Key Vault offers centralized, secure storage with Azure Active Directory
Register Multiple Services with a Single Interface in .NET Core
7/23/2024 9:17:19 AM.
Registering multiple services with a single interface in .NET Core enhances flexibility and testability, allowing different implementations for various concerns, runtime configuration, and easy unit t
Creating Custom Pipes in AngularJS
7/21/2024 4:01:56 AM.
This guide covers creating and using filters (pipes) in AngularJS. Learn how to apply built-in filters like currency, date, and uppercase, and create custom filters such as capitalize. Filters transfo
jQuery DataTable Plugin to Customize Tables in Power Pages Portal
7/19/2024 9:57:14 AM.
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, efficien
Exploring the HTML <dialog> Tag: Enhancing Web Interactivity
7/18/2024 3:22:38 PM.
This article explores the features and benefits of the <dialog> element, its role in modern web development, and practical examples of implementing modal dialogs to create more dynamic and inter
Save as draft and Submit with required, optional functionality and by default required functionality in PowerApps
7/18/2024 10:24:46 AM.
This is most required feature in any app. If the form is lengthier, it is very useful feature. Any user can fill in the half of the forms and save the form as draft. Later can come in and pickup the f
Multithreading and Multiprocessing in Python
7/18/2024 7:59:03 AM.
Multithreading allows concurrent execution of multiple threads within a single process sharing the same memory space, while multiprocessing enables parallel execution of processes, each with its own m
Health Check Service In .NET
7/18/2024 4:25:04 AM.
This service leverages ASP.NET Core to provide real-time status updates, API health checks, and dependency monitoring, enhancing application reliability and uptime.
Azure Data Fatory: Direct Data Integration to Fabric Lakehouse Delta Table
7/17/2024 9:33:42 AM.
This video shows how to leverage Azure Data Factory to directly integrate data from Azure Data Lake Storage Gen2 to Fabric Lakehouse Delta Table
Using Find Instead of FirstOrDefault with Collections in C# .NET
7/15/2024 8:10:04 AM.
When working with collections in C# .NET, FirstOrDefault and Find serve similar purposes of retrieving elements based on conditions. FirstOrDefault is versatile for any IEnumerable<T>, while Fin