Resources  
  • Understanding Expressions in C#: Dynamic Code and Query GenerationMar 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.
  • Optimizing Networks with Minimum Spanning Tree in C#Dec 12, 2024. To implement the Minimum Spanning Tree algorithm in C# to efficiently connect all nodes in a network, reducing costs and improving performance.
  • Efficiently Managing Data with Binary Tree Implementation in C#Dec 09, 2024. This article tells you how to implement and leverage binary trees in C# to optimize data storage and retrieval, ensuring your applications run smoothly and efficiently.
  • Learn Tree Shaking in JavaScriptDec 09, 2024. Tree Shaking in JavaScript optimizes bundling by eliminating unused code, ensuring cleaner, efficient production code. Tools like Webpack utilize ES6 modules and minifiers to streamline application performance.
  • Menu Navigation Layout in Android StudioDec 06, 2024. The article explains creating a navigation menu layout in Android to enable seamless activity transitions. It covers Java code and XML design with DrawerLayout and NavigationView, ensuring intuitive UI interaction.
  • Fededim.Extensions.Configuration.Protected.DataProtectionAPI: The Ultimate Integration between ASP.NET Configuration and Data Protection APINov 05, 2024. Fededim.Extensions.Configuration.Protected is an improved ConfigurationBuilder which allows partial or full encryption of configuration values stored inside any possible ConfigurationSource and fully integrated in the ASP.NET Core architecture.
  • Serialization and DeSerialization in C#Oct 21, 2024. Serialization is the process of converting an object into a storable format, such as XML, JSON, or binary, while deserialization restores it to its original form. Common types include XML, JSON, Binary, and SOAP serialization.
  • Real-World Expression Trees: Dynamic Filtering in C# with Minimal APIOct 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.
  • Delete the Element from the Binary Tree Using C#Sep 28, 2024. Learn how to efficiently delete an element from a binary tree using C#. This guide covers the complete process of node deletion, including leaf nodes, nodes with one or two children, and root node removal.
  • 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.
  • Efficient Package Management in Large Enterprises with Directory.Packages.propsSep 23, 2024. Managing NuGet package versions in large C# solutions can be challenging. The Directory.Packages.props file simplifies this by allowing you to define package versions in one central location, ensuring consistency across all projects.
  • What is a Sitemap and How to Use It?Aug 09, 2024. A sitemap is a crucial tool for website optimization, aiding search engines in indexing your site efficiently. This guide explores the definition, types, and benefits of sitemaps, including XML and HTML formats.
  • Create XML in .NET Core API and Send to Stored Procedure Using DapperJul 30, 2024. Learn how to create and send XML data to a stored procedure in a .NET Core Web API. This guide covers setting up a .NET Core Web API project, generating XML from data models, using Dapper for database interaction, and configuring a stored procedure to handle XML data. Ideal for complex data integration.
  • Data Structures and Algorithms (DSA) using C# .NET Core — Binary Trees and Binary Tree Types IIJul 29, 2024. This article explores various types of binary trees, including Full, Perfect, Complete, Balanced, Skewed, and Degenerate Binary Trees. It explains their properties and distinctions, such as how Full and Perfect trees differ from Complete trees.
  • Advanced ADO.NET Features for Complex Data and Async OperationsJul 23, 2024. ADO.NET remains essential for database interactions in . NET. Advanced features include handling complex types with SQL Server's UDTs and XML data, managing binary data with VarBinary, and leveraging asynchronous operations for improved performance.
  • Content Negotiation in .NET Core Web APIJul 11, 2024. Content negotiation in REST APIs allows clients to specify their preferred response format (e.g., JSON or XML) using HTTP headers like Accept and Content-Type. ASP.NET Core Web API supports this with built-in JSON support and customizable formatters for XML and other formats.
  • Understanding View Binding in AndroidJul 09, 2024. View binding is a feature that makes it easier to write code that interacts with views. Once view binding is enabled in a module, it generates a binding class for each XML layout file present in that module. An instance of a binding class contains direct references to all views that have an ID in the corresponding layout.In most cases, view binding replaces findViewById
  • Understanding LINQ While Writing Your OwnJul 03, 2024. LINQ (Language-Integrated Query) in .NET offers a unified, declarative way to query diverse data sources like objects, databases, XML, and more. It simplifies data manipulation with methods like Where, Select, and GroupBy, supporting both query and method syntax.
  • How to Convert varbinary to Base64 String in SQL ServerJul 03, 2024. Learn how to convert varbinary data to Base64 strings in SQL Server using XML functions and the CAST method. This tutorial provides clear steps and SQL examples for encoding binary data, crucial for web applications needing text-based transmission of images and files.
  • Dependency Injection System in Angular 18Jul 03, 2024. Angular 18 introduces significant enhancements to its Dependency Injection (DI) system, pivotal for scalable and maintainable applications. These improvements include optimized tree-shakability, ensuring only necessary code is bundled for smaller, faster apps.
  • Copying Footers Between SharePoint Sites Using PnP PowerShellJun 24, 2024. I've been extensively using SharePoint and the PnP PowerShell module, which simplifies tasks with easy command sets and detailed documentation. Notably, copying a footer between SharePoint sites is straightforward with PnP.
  • Web APIJun 11, 2024. A Web API (Application Programming Interface) enables applications to communicate over the internet. Using protocols like HTTP and data formats such as JSON and XML, Web APIs facilitate interaction between different software systems.
  • Convert an Embedded Resource into an XML File in WPF C#Jun 06, 2024. When working with embedded resources in a WPF application, it is important to follow specific steps to guarantee that your resources are properly included in the assembly and can be accessed during runtime.
  • WADL vs WSDL: The Battle of Web Service DescriptorsMay 30, 2024. Explore the significance and evolution of WSDL and WADL in web service description. WSDL, tailored for SOAP-based services, contrasts with WADL, simpler and geared towards RESTful services. While WSDL enjoys broader adoption, WADL's simplicity attracts developers in REST contexts.
  • Understanding the Document Object Model (DOM)May 27, 2024. The Document Object Model (DOM) is a programming interface for web documents, representing the structure as a tree of objects, enabling dynamic content manipulation and interaction in web pages.
  • Print * Tree Counts From 1 to 10 and 10 to 1 Using C#May 24, 2024. In C#, print tree counts from 1 to 10 and 10 to 1 using nested loops for ascending and descending order respectively. Utilize console output and loop control structures for efficient counting and display.
  • Client-Side Performance Optimization (Angular)Apr 19, 2024. Angular client-side performance optimization involves techniques like Ahead-of-Time Compilation, Lazy Loading, Minification, Tree Shaking, Module Optimization, Bundle Size Analysis, and more for improved user experience.
  • What is Tree Shaking In Angular?Apr 10, 2024. Tree shaking in Angular optimizes web apps by removing unused code, enhancing performance. Through Ahead-of-Time compilation and Webpack, Angular CLI eliminates dead code, resulting in smaller bundles and faster load times.
  • Learn JSX and React ComponentsApr 03, 2024. A brief idea about the JSX and React Components.
  • Creating Custom NuGet Packages in C#Mar 10, 2024. Learn how to create custom NuGet packages in C# with this step-by-step guide. Set up a project, add components, create a .nuspec file, package your project, and optionally publish to nuget.org.
  • Decoding Expression Trees in C#Mar 08, 2024. This article contains the details of how to Decoding Expression Trees in C#.
  • Customize Your Office Installer Using Office Deployment ToolsFeb 28, 2024. Customize your Microsoft Office installer effortlessly with Office Deployment Tools. Tailor settings, configurations, and deployment strategies to fit your organization's needs using command-line options and XML configuration for seamless setup.
  • Cherry-Pick and Stash for Efficient Development WorkflowsFeb 28, 2024. Excited to share SourceTree tips! Learn how to boost productivity with cherry-pick & stash features. Keep commits clean & manage work-in-progress seamlessly!
  • D365 Data Retrieval: FetchXml, Paging Cookies, and PowerShellFeb 20, 2024. Prepare your PowerShell environment for Dynamics 365 with crucial commands: Install Microsoft.Xrm.Data.PowerShell module for interacting with Dynamics 365 data. Set execution policy to RemoteSigned for internet script execution.
  • Android Responsive Login Screen Design using Constraint LayoutFeb 16, 2024. In this article, I going to explain how we can create a responsive Screen for different android Screens using Constraint Layout.
  • Using XML Key-Value Pairs in C# as a DictionaryJan 30, 2024. To represent key-value pairs in XML, you typically use elements and attributes. how to represent key-value pairs in XML using C#. It covers XML file creation, interface and enum implementation, and methods for getting and setting values in an XML file. The example includes a WPF application for interaction.
  • Visual Studio Feature: Convert JSON or XML to ClassesJan 30, 2024. In this article, I will demonstrate how to use the Visual Studio feature Paste JSON as Classes or XML as Classes. This feature was introduced in Visual Studio 2013. This compelling feature will help the developer convert JSON to a C# class or XML to a C# class.
  • Create and View Decomposition Tree Visuals in Power BIJan 23, 2024. The decomposition tree visual in Power BI lets you visualize data across multiple dimensions. It automatically aggregates data and enables drilling down into your dimensions in any order.
  • Minification and Tree Shaking in AngularJan 12, 2024. Minification and Tree Shaking in Angular: Streamlining Your Code for Optimal Performance. Minification is the process of removing unnecessary characters from your code. Tree shaking is the process of eliminating dead (unused) code from your application
  • DropDown List Using XML in ASP.Net C#Jan 11, 2024. The first dropdown, "ddldist," displays district names, and the second dropdown, "ddltaluka," displays taluka names based on the selected district. The C# code uses the Page_Load method to load district data on the initial page load. The ddldist_SelectedIndexChanged method handles the district selection, filtering, and populating of the taluka dropdown accordingly. The XML files "District.xml" and "Taluka.xml" store the district and taluka data, respectively.
  • Data Structures and Algorithms (DSA) using C# .NET Core - Binary Trees and Binary Search Tree (BST) Tree Traversal- IIJan 02, 2024. The fundamentals of Tree and Binary Search Tree, delving into data reading, node addition, deletion, and search operations through tree traversal. Understand three traversal types: Preorder, Inorder, and Postorder. Source code included.
  • How To Use Syncfusion Dropdown Tree In Vue.js ApplicationDec 28, 2023. How To Use Syncfusion Dropdown Tree In Vue.js Application.
  • How To Invoke SOAP Web Service in MuleSoftDec 24, 2023. In this article, you will learn how to invoke SOAP Web Service from the MuleSoft application. SOAP (Simple Object Access Protocol) is a protocol for exchanging structured information in the implementation of web services. It is a messaging protocol that allows programs running on different operating systems to communicate with each other by using XML as the message format.
  • Data Structures and Algorithms (DSA) using C# .NET Core — Binary Trees and Binary Search Tree (BST) - INov 27, 2023. In this article we will learn about - Binary Trees. Explore the fundamentals of trees and delve into binary trees, focusing on Binary Search Trees (BST). Understand key terminologies, tree traversal, and mathematical formulas for node calculations in this comprehensive guide.
  • Get XML element value Action in Desktop flow using Microsoft Power AutomateNov 03, 2023. Reading this article, you can learn how to Get XML element value in Desktop flow using Microsoft Power Automate.
  • Write XML to File Action in Desktop Flow using Microsoft Power AutomateOct 31, 2023. Reading this article, you can learn how to Write XML to file in Desktop flow using Microsoft Power Automate. Reading this article, you can learn how to Write XML to file in Desktop flow using Microsoft Power Automate.
  • Read XML From File Action in Desktop Flow using Microsoft Power AutomateOct 30, 2023. Reading this article, you can learn how to Read XML from file Action in Desktop flow using Microsoft Power Automate
  • How To Render Avatar Images From XML Data In Blazor?Oct 11, 2023. In this scenario, you'll need to read XML data, parse it, and then render avatar images inside a popup component in a Blazor application. This involves creating a data model, a service to handle XML parsing, and a component to display the avatars in the popup.
  • Creating a Dynamic DataGrid Sourced from Tree Component in BlazorAug 25, 2023. Creating a DataGrid component that receives data from Tree component. This combination of components can be super useful in scenarios like product catalogs, file explorers, and organizational charts etc.
  • Exploring the Diverse Flavors of LINQ with ExamplesAug 22, 2023. LINQ is a powerful feature in modern programming languages like C# that allows developers to perform queries on different types of data sources using a consistent syntax. With LINQ, you can query and manipulate data without worrying about the underlying data source, whether it's an in-memory collection, a database, or XML
  • Creating a Tree Component in BlazorAug 16, 2023. Let's create a tree component for displaying data in a structured hierarchical manner. We're gonna use HTML to design a tree, C# to define a logic, JavaScript to handle events, and of course CSS to make it look pretty.
  • Implementing AJAX for Editing Data and Updating the Database in ASP.NET MVCAug 07, 2023. Implementing AJAX for editing data and updating the database in ASP.NET MVC allows you to enhance the user experience and responsiveness of your web application. AJAX (Asynchronous JavaScript and XML) enables seamless data retrieval and updates without requiring a full page reload, resulting in faster and more interactive user interactions.
  • Converting Strings in C#: JSON, Base64, XML, CSV and ReverseJul 19, 2023. Discover Ziggy Rafiq's comprehensive guide on converting strings to JSON, Base64, XML, and CSV formats using C#. Plus, learn how to reverse the process effortlessly. Don't miss out on this must-read article!
  • Minimum Depth of Binary TreeJun 20, 2023. Find Minimum Depth of Binary Tree
  • Check If a Tree is Subtree of Another TreeJun 20, 2023. In this article, we will understand the Algorithm of how to check a tree is a subtree of another tree with code examples and code explanations.
  • Check if Binary Tree is SymmetricJun 15, 2023. This code is a C# implementation of a solution to the problem of checking if a binary tree is symmetric or not. A binary tree is symmetric if it is a mirror image of itself along the center.
  • How To Create Tree/Hierarchical list structure Using Ant Design UI In ReactJSJun 05, 2023. In this article we will learn how to create a Tree using Ant Design UI with React Js and type script.
  • HTML Vs XML - Whats The Difference?Apr 06, 2023. In this article, you will learn about HTML vs XML.
  • Include XML Comments In Swagger under ASP.NET Core 2.2Mar 22, 2023. In this article, you will learn how to include XML Comments in Swagger under ASP.NET Core 2.2.
  • Multiple Views And Access To XML Files With .NET For iOSMar 21, 2023. You will learn how to build an iPhone app using multiple views, recording, and extract data of XML files, using .NET for iOS and the XCode Interface Builder.
  • XML Serialization in practice: Preparing The Central Bank ServiceFeb 17, 2023. Learn XML serialization in practice. In the second part of our article, we will get acquainted with XML serialization and look at the use of the Central Bank's XML service in real practice.
  • Create Lookup Field In Existing SharePoint List Using REST API Schema XMLFeb 06, 2023. In this article, we will learn how to create lookup field in existing SharePoint list using REST API and schema XML. The REST API enables us to communicate with SharePoint using standard HTTP methods, such as GET, POST, PUT, and DELETE. The API provides access to various SharePoint entities including lists, libraries, and sites, allowing us to retrieve data, create and update lists, fields, items, upload files and manage user permissions.
  • Using XML Comments As Web API Documentation With SwaggerJan 18, 2023. This article demonstrage how to use C# XML Comments as a Web API documentation with Swagger.
  • Convert XML Files Data To List Of ObjectNov 13, 2022. In this blog, we learn how to get all XML files from a specific location and convert it's data into the C# object.
  • Source Control (4-4), Git - Recover Git Tree: Reflog/ResetSep 26, 2022. This article will describe how to use git reglog and Reset command.
  • Improving The Fetch XML Performance In Dynamics CRMSep 20, 2022. The articles shares the information and steps to improvise the performance of FetchXML query in DataVerse
  • Rock Your Code: XML Documentation Of Code For Microsoft .NETJul 27, 2022. In this article, you will learn about XML Documentation of code for Microsoft .NET.
  • XML Shredding In T-SQLJul 19, 2022. In this article, you will learn about XML shredding in T-SQL.
  • ERESOLVE Unable To Resolve Dependency TreeJul 16, 2022. This article tells process to fix the SPFx installation error when installing the latest version
  • String.XML In AndroidMay 09, 2022. In this article, you will learn about String.XML in Android.
  • Using For XML Clause In SQL QueriesMay 05, 2022. For XML clause is used to convert the SQL result set into XML format. It is a very much helpful clause when we need XML data from the SQL result set. The FOR XML clause can be used in top-level queries and in subqueries. The top-level FOR XML clause can be used only in the SELECT statement. In sub queries, FOR XML can be used in the INSERT, UPDATE, and DELETE statements. 
  • Retrieve Data Using FetchXMLWebAPI With Webresource In Dynamics CRMApr 07, 2022. In Dynamics 365 CRM, for certain requirements data needs to be retrieved to achieve business functionality. As an example, all contact records whose first name starts with V taken for explanation.
  • Convert JSON And XML Object Into Class Using Visual StudioJan 11, 2022. In this article, we are going to explore about how to convert a JSON/XML object into the classes using Visual Studio.
  • FOR XML In SQL SeverDec 02, 2021. In this article, we are going to discuss FOR XML Path Clause in SQL Server.
  • Usage Of XML Function In Power AutomateOct 28, 2021. In Power Automate, at times we must work on strings which have XML values. We can use XML function in power automate to convert string value to XML and perform related operations. As an example, notification xml string is used here to send notification to required person.
  • Get XML Data From SP Library And Upload To SP List - JavaScriptJul 03, 2021. In this article, you will learn how to get XML Data from SharePoint Library & Upload to SharePoint List - JavaScript REST API.
  • Forms Authentication (A), Using XMLMay 03, 2021. This article discuss Forms Authentication by using XML
  • Export Data In EXCEL, PDF, CSV, Word, JSON, XML And Text File In .NET Core 3.1 Using MVC CoreApr 12, 2021. This article demonstrates how to export functionality with different types of file formats like excel, pdf, word, csv, json, xml and text files using a .net core 3.1 application. I have implemented the most frequently used file format to export data in real time projects.
  • Create A Terrain & Add Trees And Grass In UnityJan 19, 2021. In this article, you will learn how to create a terrain & add trees and grass in Unity.
  • Composite Design Pattern Using PythonDec 26, 2020. A composite design pattern is a structural design pattern. It allows developers to create multiple nested objects of the same type to complete one single system hierarchy.
  • Learn About AJAX SecurityDec 15, 2020. Explore the swift and interactive technology of AJAX in web development, its implementation using JavaScript, XML, and HTML, and its security vulnerabilities such as session management flaws, CSRF, and XSS attacks. Learn how to secure AJAX applications effectively for robust web security.
  • Layouts in AndroidSep 21, 2020. This article looks at layouts in Android with Android Studio
  • XML Entities - IntroductionSep 09, 2020. In this article, you will learn about XML Entities.
  • Lowest Common AncestorAug 17, 2020. In this article, you will learn how to find the lowest common ancestor.
  • Communicating With XMLMay 31, 2020. In this article, you will learn how to communicate and process in XML.
  • Working With Red-Black Trees In C#May 28, 2020. Although binary search trees (BSTs) are used widely, as data gets added, binary search trees tend to degenerate into an unordered linked list over time. The "red-black tree" is a related type of binary tree that's often more suitable for certain types of search operations. This article discusses how red-black trees facilitate faster searches and become less disordered over time than similar data structures, and shows how to build and search a red-black tree in C#.
  • XML WritersMay 27, 2020. In this article, you will learn about the XML writer programming interface.
  • XML And DatabaseMay 27, 2020. In this article, you will learn about the XML and database modes.
  • XMl Data ValidationMay 27, 2020. In this article, you will learn about Validation types and processes in XML.
  • Create and Configure sitemap.xml in ASP.NET CoreMay 15, 2020. In this article, we are going to learn how to create a sitemap.xml in an ASP.NET Core Web application. We will add a middleware for sitemap.xml routing.
  • Composite And Builder Design Pattern With A TreeApr 23, 2020. In this article, we cover what is the composite pattern, and what is this useful for?
  • How To Export Data In EXCEL, PDF, CSV, Word, JSON, XML And Text File In MVC ApplicationApr 20, 2020. This article demonstrates how to export functionality with different type of file format like excel, pdf, word, csv, json, xml and text file in .net mvc application.
  • Tree Data StructureApr 14, 2020. Learn about trees, a hierarchical data structure. Explore terminology, binary tree types, and traversal methods like pre-order, in-order, post-order, and level-order. Understand insertion, deletion, and search operations.
  • Combine XML And Json Requests And Responses In ASP.NET Core Web API Apr 12, 2020. In this post, we will see how to pass XML and Json data in same web request as well as get XML and Json data from same request as per our need.
  • Create a Tree View in Blazor with SyncFusion component Feb 19, 2020. In this post, we will see how to create a tree view component in Blazor server using SyncFusion custom component collection.
  • Convert XML File Data to a List Of ObjectsJan 27, 2020. In this blog, we will learn how to get all XML files from a specific location and convert its data into a C# object.
  • Implementation of Decision Trees In PythonNov 27, 2019. Learn basics of decisions trees and their roles in computer algorithms and how decision trees are used in Python and machine learning.
  • Transformation Using CSS And XSLTSep 18, 2019. In this session, I will discuss how to convert XML to XSLT. Basically, we need XSLT for the presentation of XML using some user-defined transformation.
  • What Is A Network Database?Jul 26, 2019. Network databases represent data in a tree-like structure. In this article, we'll learn basics of hierarchical database management systems and how data is represented and stored in a hierarchical database.
  • Reading XML File In Angular 8Jul 24, 2019. Here, in this article, we will learn how to make our Angular 8 application read the XML file returned from the server.