Resources  
  • Sir, This Is a TypeScript FunctionMay 21, 2025. Functions are one of the most fundamental concepts in programming. They’re where your application’s logic lives and in TypeScript, they’re even more powerful thanks to static typing.
  • Mastering PySpark's EXPLODE Function in Fabric NotebooksMay 19, 2025. Learn how to master the EXPLODE function in PySpark using Microsoft Fabric Notebooks. This guide simplifies how to transform nested arrays or maps into separate rows for easier analysis.
  • EOMonth function in PowerFx using canvas App with Power appsMay 13, 2025. Learn how to use the EOMonth function in Power Fx with Microsoft Power Apps. Build a canvas app to calculate the last day of added or subtracted months using TextBox, Label, and Button controls.
  • DAX in Power BIMay 08, 2025. DAX (Data Analysis Expressions) in Power BI allows users to perform advanced calculations, aggregations, and filtering. Learn how to create calculated columns, measures, and time-based analysis for deeper insights and reporting.
  • Build & Deploy Azure Function Using C# and Integration with Azure SQLMay 05, 2025. This article walks you through creating the function, connecting to SQL, and deploying it to Azure perfect for developers looking to build serverless apps with database support.
  • 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.
  • Mastering the Power of Calendar Tables in Power BI with ADDCOLUMNS in DAXMay 02, 2025. This article covers creating dynamic, customizable date tables for advanced time intelligence, enabling better reporting, filtering, and analysis in your Power BI dashboards.
  • Anonymous vs Arrow FunctionsMay 02, 2025. This article explains anonymous and arrow functions in JavaScript, their syntax, usage in callbacks, array methods, IIFEs, and real-life examples like shopping cart logic, helping you write cleaner code.
  • Advanced C# Database Tricks for Power UsersMay 01, 2025. Explore advanced C# database techniques using ADO.NET, Entity Framework Core, and Dapper.
  • Django's Built-in Libraries and FunctionsApr 18, 2025. Explore Django's built-in libraries and functions that simplify web development. From handling URLs and forms to using shortcuts and utility tools, Django offers powerful features out of the box to help developers build robust, scalable apps faster and easier.
  • 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.
  • Run Your First Python Script in AWS LambdaApr 15, 2025. Learn how to run your first Python script using AWS Lambda in this simple step-by-step guide. No servers needed! We’ll show you how to create a Lambda function, write Python code, and test it—all using the AWS Console.
  • Passing Connection as Input Parameter in PowerShell FunctionsApr 14, 2025. Easily reuse a single SharePoint Online admin connection in PowerShell functions to fetch QA site info efficiently, reducing redundant logins and enhancing performance in M365 automation tasks.
  • 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.
  • Transforming Data Insights with Snowflake's LLM Functions– Part 1Apr 07, 2025. In this article, I will cover the capabilities of Snowflake Cortex’s Large Language Model (LLM) function which can be utilize for variety of task such as sentiment analysis, text completion and language translation.
  • 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.
  • Unleashing Serverless Power: Azure Functions Use Cases & Hands-On GuideApr 03, 2025. Discover the power of serverless computing with Azure Functions! This guide explores real-world use cases, from automation to event-driven processing, and walks you through a hands-on implementation.
  • 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.
  • EDate Function in PowerFx Using Canvas Apps in Power AppsApr 01, 2025. Reading this article, you can learn how to perform the EDate function in PowerFx using Microsoft Power Apps. Also, you will be able to learn Text box, Label control in the Power Apps environment.
  • 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.
  • Download Function in PowerFx using Canvas App with Power AppsMar 31, 2025. Learn how to use the Power Fx Download function in Microsoft Power Apps to download files from a URL. Explore canvas app development, controls like TextBox, Label, Button, and test the app in Power Apps Studio.
  • How to Build Serverless APIs with Azure Functions in Azure PortalMar 28, 2025. Learn how to build and deploy serverless APIs using Azure Functions in the Azure Portal. This article covers creating an HTTP-triggered function, testing, securing, and scaling it efficiently.
  • Understanding Numeric Functions in SQLMar 27, 2025. SQL numeric functions simplify mathematical operations like rounding, power calculations, and random value generation. Functions like ABS(), CEILING(), FLOOR(), ROUND(), SQRT(), MOD(), and LOG() help with financial calculations, data analysis, and scientific computing.
  • Understanding Conversion Functions in SQLMar 27, 2025. SQL conversion functions like CAST(), CONVERT(), TRY_CAST(), TRY_CONVERT(), and FORMAT() help change data types, format values, and handle errors efficiently.
  • Working with Anonymous Function(Lambda) in PythonMar 27, 2025. A lambda function in Python is an anonymous function (function without a name) that can have any number of arguments but only one expression. It is defined using the lambda keyword.
  • 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.
  • Explanation of Date and Time Functions in SQLMar 26, 2025. SQL date and time functions help efficiently manipulate and retrieve date-related information. Common functions include GETDATE() for the current timestamp, DATEADD() for adding time intervals, DATEDIFF() for date differences, FORMAT() for formatting, and EOMONTH() for month-end dates.
  • Mastering SQL String FunctionsMar 25, 2025. SQL string functions help manipulate and process text data efficiently. This guide covers key functions like UPPER(), LOWER(), LEN(), LEFT(), RIGHT(), SUBSTRING(), REPLACE(), CONCAT(), LTRIM(), RTRIM(), CHARINDEX(), REVERSE(), and FORMAT(), demonstrating their usage with examples to improve query performance and readability.
  • How to Show and Hide Content Using JavaScriptMar 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 ListMar 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 FunctionMar 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.
  • Understanding Aggregate Functions in SQLMar 21, 2025. SQL aggregate functions help perform calculations on multiple rows, returning a single result. This article covers COUNT(), SUM(), AVG(), MIN(), MAX(), and advanced uses like GROUP BY, HAVING, CASE, PARTITION BY, and DISTINCT.
  • Understanding Scalar Functions in SQLMar 21, 2025. This article explores common functions like LEN(), UPPER(), LOWER(), ROUND(), GETDATE(), ABS(), SQRT(), SUBSTRING(), and REPLACE(), along with advanced usage, computations, and custom scalar functions for efficient queries.
  • 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.
  • ​Building Intelligent Serverless Apps with Azure OpenAI and FunctionsMar 17, 2025. Learn how to integrate Azure OpenAI with Azure Functions to build scalable, AI-powered applications using Visual Studio 2022. This article covers setup, implementation, and deployment for serverless AI solutions.
  • Understanding Decorators in PythonMar 12, 2025. Decorators in Python are powerful tools that modify the behavior of functions or classes without changing their code. They enable code reusability, logging, authentication, and more.
  • 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
  • Migrate Azure Function from In Process to Isolation ModelMar 06, 2025. Migrating Azure Functions from the in-process model to the isolated worker model is crucial to ensure compatibility with future .NET versions and leverage enhanced flexibility and control over your application's lifecycle. Microsoft has announced that support for the in-process model will end on November 10, 2026, making it imperative for developers to transition to the isolated worker model.
  • React Tutorial For Beginners - Working on Function Components in ReactFeb 27, 2025. In this Article, I will show what are React Components and steps to create Function Components. Also, know about how to render Function Components.
  • 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.
  • 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.
  • Different Type of Modern Function in JavaScriptFeb 14, 2025. Explore JavaScript's modern functions, including arrow functions, async/await, and anonymous functions. This article covers IIFE, event handlers, and promises with practical examples for efficient coding in JavaScript.
  • Explaining Aggregate Functions in SQLFeb 14, 2025. Learn about SQL Aggregate Functions like SUM, COUNT, AVG, MIN, and MAX. These functions help perform calculations on grouped data, such as finding totals, averages, and minimum or maximum values, making data analysis more efficient.
  • 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.
  • 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.
  • Shared Function Use Cases in VB .NETJan 31, 2025. Explore the use cases of Shared Functions in VB.NET. Learn how to implement static methods to improve code efficiency, optimize performance, and handle utility tasks.
  • How to Concatenate Dynamic Column Values in Power AppsJan 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 PowerAppsJan 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.
  • 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.
  • Python Import Modules with ExampleJan 08, 2025. Learn Python's import module concepts, including importing entire modules, specific functions, and aliasing. This article demonstrates creating, reading, and writing employee data to a JSON file with practical examples.
  • 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.
  • SharePoint Data from Azure Function using Self Signed CertificateJan 04, 2025. This article covers configuring Azure Functions, setting up certificate-based authentication, and connecting to SharePoint Online, enabling secure integration for seamless data access.
  • Checking Leap Year in Java with CodeJan 03, 2025. This article explains how to determine leap years in Java using conditional statements, ternary operators, functions, and Java's built-in `Year` class, with code examples and clear explanations for each method.
  • Use the Navigate Function for Seamless Transitions in Power AppsJan 01, 2025. Learn how to use the Navigate function in Power Apps to create smooth user experiences by enabling seamless navigation between screens. This article covers basic navigation setup, custom transitions, and how to pass context between screens.
  • Difference Between Collect & ClearCollect Functions in Power AppsDec 31, 2024. Learn how to use these functions for data manipulation, including adding, updating, and clearing collections. Gain insights into their applications to streamline your app-building process effectively.
  • LookUp Function in Power Apps for Efficient Data RetrievalDec 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.
  • Understanding JavaScript ClosuresDec 29, 2024. Closures in JavaScript enable functions to retain access to their lexical scope, even outside their context. They aid in data encapsulation, creating private variables, function factories, and event handlers for efficient, maintainable code.
  • VarP function in PowerFx using canvas App with Power appsDec 28, 2024. Learn how to use the VarP function in Power Fx with Power Apps. Build a Canvas App, design controls like Labels and TextBoxes, calculate variance, and preview results on various devices in Power Apps Studio.
  • StdevP Function in PowerFx Using Canvas App with Power AppsDec 27, 2024. Reading this article, you can learn how to perform the StdevP function from Power Fx using Microsoft Power Apps. Also, you will be able to learn Text box, Label control in the Power Apps environment.
  • Sum Function in PowerFx using Canvas App with Power AppsDec 16, 2024. Learn how to use Power Fx's Sum function in Power Apps to build custom business applications quickly. This guide covers creating a simple Canvas app, using Text Box and Label controls, and integrating Sum for efficient data calculation.
  • Min Function in PowerFx using Canvas App with Power AppsDec 13, 2024. Reading this article, you can learn how to perform the Min function from Power Fx using Microsoft Power Apps. Also, you will be able to learn Text box, Label control in the Power Apps environment.
  • Understanding the AI_EXTRACT SQL Function in DatabricksDec 12, 2024. This article dives into the mechanics of AI_EXTRACT, its syntax, and various use cases with examples. AI_EXTRACT in Databricks extracts structured data, like names and dates, from unstructured text using AI models. It integrates seamlessly with SQL workflows, enhancing data analysis and organization efficiency.
  • Max Fnction in PowerFx using Canvas App with Power AppsDec 11, 2024. Reading this article, you can learn how to perform the Max function from Power Fx using Microsoft Power Apps. Also, you will be able to learn Text box, Label control in the Power Apps environment.
  • 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.
  • Average Function in Canvas App using PowerFx with Power AppsDec 09, 2024. Reading this article, you can learn how to perform the Average function from Power Fx using Microsoft Power Apps. Also, you will be able to learn Slider control, Label control in the Power Apps environment.
  • Python Functions and Variable Scope LEGBNov 29, 2024. This article explores Python variable and function scopes, including the LEGB model: Local, Enclosing, Global, and Built-in. Learn practical examples and understand scope behavior for effective coding.
  • 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.
  • Azure Function to Read Incoming Message in TwilioNov 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.
  • Rank Functions in SQL serverNov 26, 2024. In this article, we will learn about Rank functions in SQL Server, like RANK(), DENSE_RANK(), ROW_NUMBER(), and NTILE(), are used to assign rankings to rows within a result set.
  • User-Defined Functions in SQL ServerNov 21, 2024. SQL Server supports two types of User-Defined Functions (UDFs): Table-Valued and Scalar-Valued. Table-valued functions return a table based on logic, while Scalar-Valued functions return a single value.
  • 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.
  • Build an Azure Blob Trigger Function to Compress Images with SharpNov 12, 2024. This guide walks through creating an Azure Blob Trigger Function that compresses images uploaded to Azure Storage using the Sharp image processing library. It covers setting up Azure Blob Storage, configuring the function app, and implementing image compression with Node.js.
  • Explaning AWS Lambda FunctionNov 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.
  • Explaining Deep Linking in Power Apps Nov 12, 2024. Deep linking in Power Apps enables direct navigation to specific screens, improving user experience and engagement. By using URL parameters, custom schemes, and StartScreen functions, developers can create targeted, optimized user journeys.
  • Library Component Type in SharePoint Framework (SPFx)Nov 09, 2024. SPFx Library Components enable the creation of reusable, modular code in SharePoint. By centralizing utility functions, services, and UI elements, developers can enhance maintainability and consistency across projects.
  • How to Sort a List of Objects in TypeScript by PropertyNov 09, 2024. This guide covers sorting lists of objects in TypeScript, with examples for sorting by string, numeric, and date properties. It demonstrates using the sort() method, localeCompare for strings, custom sorting functions for dates and numbers, and multi-property sorting techniques.
  • Exploring the New T-SQL Enhancements in SQL Server 2022Oct 31, 2024. In this article we will explore the powerful new T-SQL enhancements in SQL Server 2022, including features like DATE_BUCKET, DATETRUNC, and IS DISTINCT FROM, designed to simplify data handling and optimize performance for modern data needs.
  • BIT Functions New T-SQL Enhancements in SQL ServerOct 30, 2024. In this article, we’ll explore some of BIT functions new enhancements in SQL Server 2022, their practical applications, and a modified example to demonstrate their usage.
  • Map, Filter and Reduce in TypeScript with ExamplesOct 30, 2024. 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 streamline data manipulation with TypeScript today.
  • Windowing Enhancements New T-SQL Enhancement in SQL ServerOct 29, 2024. SQL Server 2022 introduces advanced T-SQL features, enhancing window functions, aggregations, and NULL handling. New options like the WINDOW clause and IGNORE NULLS optimize complex data queries, reduce code duplication, and improve readability.
  • Automate SharePoint Site Creation with Azure Functions and AD AuthOct 28, 2024. This guide demonstrates how to automate SharePoint site creation using Azure Function Apps with custom Azure Active Directory (AD) authentication. It covers prerequisites, creating an Azure Function App, configuring authentication, setting up permissions, and testing the function.
  • GENERATE_SERIES Function New T-SQL Enhancements in SQL ServerOct 25, 2024. The GENERATE_SERIES function in SQL Server 2022 creates sequences of numbers or dates between specified start and end values, with an optional step. It's beneficial for reporting, filling data gaps, and generating test data.
  • TRIM Function New T-SQL Enhancements in SQL ServerOct 25, 2024. The enhanced TRIM function in SQL Server 2022 adds flexibility for removing unwanted characters in strings, beyond just spaces. Now, developers can use BOTH, LEADING, and TRAILING keywords to trim from specific positions.
  • Understanding the Role of Servers in Modern NetworkingOct 25, 2024. Servers play a crucial role in modern networking by managing data storage, processing, and communications across networks. From web hosting and cloud computing to secure data transfer, servers enable seamless connectivity.
  • TypeScript for advanced type inference in ReactOct 23, 2024. In this article, Ziggy Rafiq discusses advanced type inference techniques in React with TypeScript, focusing on hooks and JSX elements.
  • DATETRUNC New T-SQL Enhancements in SQL ServerOct 09, 2024. This new feature simplifies date truncation by allowing developers to truncate dates to specific intervals, such as year, month, or day. It improves query performance and data manipulation in SQL.
  • Exploring Aggregate Functions in Azure Cosmos DBOct 07, 2024. Aggregate functions in Cosmos DB allow efficient data summarization and analysis across multiple documents. They perform calculations such as AVG, COUNT, SUM, MAX, and MIN to retrieve meaningful insights from large datasets.
  • DATE_BUCKET Function New T-SQL Enhancements in SQL ServerOct 05, 2024. This article will delve into the DATE_BUCKET function, its syntax, and its practical use cases using the AdventureWorks2022 sample database. We’ll also compare DATE_BUCKET with other similar T-SQL functions and provide examples that demonstrate how to use it effectively.
  • 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.
  • Rank and Dense_Rank Function in SQL ServerSep 30, 2024. RANK and DENSE_RANK functions in SQL Server assign sequential numbers to rows based on ordering. RANK skips numbers for ties, while DENSE_RANK does not. Both can partition results using the PARTITION BY clause. These functions are commonly used to rank rows, find highest salaries, and more.
  • What is the Collect Function in Power Apps?Sep 30, 2024. Power Apps enables users to create custom applications with minimal coding, utilizing features like the Collect function for data management. This function allows dynamic storage of various data types in in-memory collections, enhancing app performance and user experience.
  • What is the Filter Function in Power AppsSep 30, 2024. 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 information.
  • User Record Management in CSep 29, 2024. This content focuses on implementing functions in C programming to efficiently add and display user records. It covers the creation of structures for storing user details, such as name, age, and contact information.
  • Compiling Multiple Files to Build an ApplicationSep 29, 2024. 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 directive to link functions.
  • How to Download Code from Your Azure Function AppSep 27, 2024. In this article, we will learn how to easily download code from your Azure Function App using built-in tools like the Azure Portal, App Service Editor, or source control integration.
  • Getting Dynamic Input Value and Post to the AJAX functionSep 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.