C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
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]
Kirtesh Shah(9)
Chetan Sanghani(5)
Jitendra Mesavaniya(5)
Ishika Tiwari(3)
Ajay Kumar(3)
Jaimin Shethiya(3)
Allam Purushotham(3)
Shiv Sharma(2)
Aakash Chhillar(2)
Subarta Ray(2)
Onkar Sharma(2)
Jignesh Kumar(2)
Naveen Kumar(2)
Swesh S(2)
Shikha Tiwari(2)
Mohammathu Fairoos(2)
Aman Gupta(2)
Nandan Hegde(2)
Alpesh Maniya(2)
Lokendra Singh(2)
Prasad (2)
Saksham Gupta(2)
Sanwar Ranwa(2)
Dashrath Hapani(1)
Ramchand Repalle(1)
Tharunkumar Magudeeswaran(1)
Ziggy Rafiq(1)
Viknaraj Manogararajah(1)
Raveena Attri(1)
Manoj Kalla(1)
Vijay Kumari(1)
Shanuka Maheshwaran(1)
Jalpa Dhola(1)
Rama Dabburi(1)
Sangeetha S(1)
Mayooran Navamany(1)
Rohini Parade(1)
Rajeev Kumar(1)
Anuradha Rani (1)
Vaishali Vishwakarma(1)
Vijai Anand Ramalingam(1)
Abhishek Dhoriya(1)
Vijay Yadav(1)
Dharmeshwaran S(1)
Velladurai (1)
Surya Ghimire(1)
Sardar Mudassar Ali Khan (1)
Jobin S(1)
Ayush Gupta(1)
Jefferson S. Motta(1)
Darshan Adakane(1)
Sarthak Varshney(1)
Aman Patel(1)
Vijay Pratap Singh(1)
Ashutosh Singh(1)
Mark Pelf(1)
Mithilesh Tata(1)
Ankeet Dange(1)
Ng Cheehou(1)
Manikandan M(1)
Resources
No resource found
Introduction to Managing Connections and Gateways in Power BI
Mar 27, 2025.
Learn how to efficiently manage connections and gateways in Power BI, including on-premises and virtual network data gateways.
Mastering SQL String Functions
Mar 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.
Understanding Escape Characters in .NET
Feb 21, 2025.
Escape characters in .NET, especially in C#, allow special characters to be represented within strings. They are used to format text, and include new lines (\n), tabs (\t), quotes (\"), and more.
Getting Started with dbt (Data Build Tool) in Microsoft Fabric
Feb 10, 2025.
In this article, we will learn how to get started with DBT (Data Build Tool) in Microsoft Fabric for efficient data transformation and modeling.
Java Program for Counting the Number of Vowels in a String
Jan 28, 2025.
This article explains how to count the number of vowels (a, e, i, o, u) in a given string using Java. It covers two approaches: a simple method using loops and conditional statements, and a more optimized approach utilizing a Set for quick vowel lookups.
Java 21 JUnit Testing Best Practices
Jan 21, 2025.
The best practices for JUnit testing in Java 21 by Ziggy Rafiq include leveraging new language features like record patterns and string templates. Develop maintainable and robust Java applications by leveraging test isolation, AAA patterns, and parameterized tests.
Site to Site VPN Connection Between AWS and Azure
Jan 16, 2025.
Learn how to establish a secure Site-to-Site VPN connection between AWS and Azure to enable seamless communication across cloud environments.
How To Find All Possible Subsets of a String Using C#
Jan 16, 2025.
This article covers step-by-step implementation, explaining algorithms like recursion and iteration to generate subsets effectively. Perfect for beginners and developers, enhance your string manipulation and problem-solving skills in C#.
How to Add and Manage connections in Power Automate
Jan 01, 2025.
Learn how to add, manage, and secure connections in Power Automate. Integrate 500+ services like SharePoint, Excel, and Office 365 for seamless workflows, time-saving automation, and centralized management.
Implementation of String Manipulation in C# 9.0
Dec 29, 2024.
Explore various string manipulation techniques in C# 9.0, including concatenation, searching, replacing, and more. Learn how to leverage these methods to write cleaner and more efficient code.
Using Regex in C# 9.0
Dec 28, 2024.
Regular Expressions (Regex) can help with text processing, validating data, and manipulating strings in C# 9.0. This article explains the key features, applications, and benefits of using Regex in your code.
Binary To Decimal Conversion in C#
Dec 27, 2024.
This article explains how to convert a binary number to a decimal number in C#. It covers two methods for the conversion, providing examples and code snippets. It's a helpful resource for beginners and intermediate programmers learning C#.
Decimal to Binary Conversion in C#
Dec 26, 2024.
Learn how to convert decimal to binary in C#. Understand decimal and binary numbers, explore examples, and implement a simple program. This guide is perfect for beginners and professionals preparing for interviews.
How to Reverse a String in Java
Dec 24, 2024.
Reversing a string in Java is a common task that involves reversing the order of characters in a string. For example, "Hello" becomes "olleH". To accomplish this in Java, we can use the StringBuilder class, which allows us to efficiently manipulate and reverse strings.
How To Count Occurrence Of Each Character From The String In C#
Dec 21, 2024.
Learn how to count the occurrence of each character in a string using C#. This guide covers step-by-step instructions to efficiently analyze strings and determine the frequency of individual characters.
How To Remove Duplicate Characters From String In C#
Dec 18, 2024.
Learn how to remove duplicate characters from a string in C# with simple and effective methods. it will cover various approaches, including using loops, LINQ, and HashSet, to streamline string manipulation.
How to Transfer Files or Folders from Local Machine to Remote in EC2
Dec 17, 2024.
This article explains how to transfer files or folders from your local computer to an Amazon EC2 instance using SSH and SCP. It covers the steps to connect to the EC2 instance, create a folder, and securely transfer files.
Connection String in ASP.NET Core MVC .NET 8
Dec 13, 2024.
Learn how to manage and use connection strings in applications, explore AppSettings.json, environment variables, and static classes, and understand their implementation with sample code for seamless database connectivity.
Character Occurrence in a String in C#
Dec 13, 2024.
In this article, I will discuss how to count the number of occurrences of a character in a string in C# with Examples. This article explores various ways to count character occurrences in a string using C#, including loops, dictionaries, and LINQ techniques, with detailed examples and practical explanations.
How To Reverse Each Word Of Given String
Dec 09, 2024.
This article demonstrates how to reverse each word in a string using C#. It provides a simple approach to solving this common interview question, with code examples and explanations.
Explaining Palindrome Program in C#
Dec 09, 2024.
In this article, I will discuss the Palindrome Program in C# (Palindrome Number and Palindrome String) with Examples. It includes detailed explanations and practical C# implementations.
How to Reverse Order of the Given String
Dec 08, 2024.
Discover simple methods using popular programming languages like JavaScript, Python, or Java. Understand string manipulation concepts and implement effective solutions for reversing text with code examples and explanations.
Take Input in Java using Scanner Class with Code
Dec 06, 2024.
Learn how to capture user input in Java using the Scanner class. This guide covers importing, creating Scanner objects, reading inputs (strings, integers, doubles), and handling exceptions with examples.
Palindrome String Program in C#
Dec 04, 2024.
Explore how to determine if a string is a palindrome in C#. Learn the concept and examples, and implement a simple solution to check palindrome strings for interview preparation.
How to Reverse a String in C#?
Dec 03, 2024.
Explore four methods to reverse a string in C#: using string.Reverse(), Array.Reverse(), for loop, and foreach loop. Ideal for interview preparation with practical examples and outputs.
How to Use Self-Signed Certificates for Azure VPN
Nov 30, 2024.
Learn how to set up an Azure Point-to-Site (P2S) VPN with certificate-based authentication. Follow the steps to create, export, and upload certificates, configure the VPN gateway, and establish a secure connection to Azure Virtual Network.
Format Literal Strings in C#
Nov 26, 2024.
Different techniques to display special characters and add different types of formatting to the output. This article explores C# string literals, including regular, verbatim, and interpolated strings, escape sequences, and formatting techniques like composite formatting.
Webgrid and Gridview in ASP.NET Core and .NET Core Explained
Nov 21, 2024.
Learn dynamic paging and sorting in .NET Core using JavaScript and jQuery. Modify URLs with query strings for seamless server interaction, leveraging Bootstrap for responsive design and intuitive user experience.
.NET 9 Features with Code Example
Nov 19, 2024.
Learn how abstraction simplifies complex systems by unifying interfaces, abstract classes, and dependency injection. Build modular, maintainable, and testable applications with this comprehensive guide.
How to Sort a List of Objects in TypeScript by Property
Nov 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.
Create a Model with Database Table in .NET 8 using EF Core
Oct 28, 2024.
This article guides you through creating a data-driven application using .NET 8 and Entity Framework Core. You'll learn to define a model, configure a DbContext, set up a SQL Server connection string, and use migrations to manage your database schema.
STRING_SPLIT() Ordinal New T-SQL Enhancements in SQL Server
Oct 16, 2024.
The STRING_SPLIT() function in SQL Server, introduced in 2016, allows for splitting delimited strings into rows. The 2022 enhancement introduces an optional ordinal parameter, enabling retrieval of each value's original position in the string.
Hidden Gems - Converting the Table Response Into String Variable
Oct 03, 2024.
Discover the hidden gems and best practices for effectively handling data within Microsoft Copilot. Enhance your AI-driven applications by learning essential techniques for data manipulation and integration.
Hidden Gems - Adding the Custom Data to Generative Answers
Oct 03, 2024.
Learn how to input a string variable as custom data for the Generative Answers component in Copilot Studio. Overcome challenges like binding errors and formatting issues by converting large text into a table format using PowerFx. Process data efficiently and generate responses tailored to user queries.
Palindrome Check: Normalize Strings in C#
Sep 30, 2024.
Learn essential string manipulation techniques, including whitespace removal, case insensitivity, and character comparison. We’ll provide clear code examples and algorithms to efficiently determine if a given string reads the same forwards and backwards, enhancing your C# programming skills.
Learn MongoDB Evaluation Operators
Sep 24, 2024.
MongoDB's evaluation operators enable advanced query operations, allowing for dynamic data retrieval beyond simple comparisons. Key operators include $regex for regular expression matching, $mod for modulus operations, $expr for expression evaluation, and $where for JavaScript-based queries.
Understanding Model Binding in ASP.NET Core with .NET 8
Sep 17, 2024.
Model binding in .NET Core simplifies the process of mapping HTTP request data to action method parameters. It automatically extracts data from various sources like query strings, form submissions, route parameters, HTTP headers, and request bodies, making it easier to handle client-server interactions efficiently.
Arrays of Strings in Multidimensional Arrays
Sep 09, 2024.
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 multidimensional arrays.
Azure Bastion Connection to VM
Aug 29, 2024.
Azure Bastion provides secure RDP and SSH access to Azure VMs directly through the Azure portal without needing public IPs. It enhances security by using SSL and reduces the attack surface. Managed by Microsoft, it ensures seamless, reliable connectivity and simplifies access while eliminating public exposure.
Default Implementation in C# Interfaces
Aug 28, 2024.
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 solely of letters, enhancing code organization and reusability.
Azure Bastion connection to VM
Aug 28, 2024.
Azure Bastion is a managed service that provides secure RDP and SSH access to Azure virtual machines without needing public IP addresses. It connects directly through the Azure portal using SSL, enhancing security by eliminating public exposure and ensuring reliable, browser-based access to your VMs.
Centralizing String Utility Functions in Java
Aug 27, 2024.
This article explains how to consolidate common string utility functions in Java by creating a utility class like StringUtils. It covers methods for checking if a string contains only alphanumeric characters with underscores and if a string consists solely of letters, improving code organization and reusability.
How to Get Only Letters from a String in C#?
Aug 05, 2024.
Learn how to extract only the letters from a string in C# using various methods. This guide covers techniques such as using regular expressions, string manipulation methods, and LINQ to filter out non-letter characters.
Java 21: The Latest Features and Improvements
Jul 26, 2024.
Java 21 introduces significant enhancements including Pattern Matching for Switch, Record Patterns, and String Templates. It also features Sequenced Collections, Virtual Threads, and Scoped Values, streamlining concurrent programming and improving code efficiency.
Connection with SQL and queries.
Jul 24, 2024.
Explore the essentials of connecting to SQL databases and executing efficient queries. Learn about various SQL commands, database management techniques, query optimization strategies, and best practices for data retrieval.
Performance Optimization in ADO.NET: Tips and Techniques
Jul 23, 2024.
Optimize ADO.NET performance by leveraging connection pooling to reduce overhead, using efficient command execution strategies such as stored procedures and batch processing, and retrieving data effectively by selecting only necessary columns and implementing paging.
Connecting to a MySQL Database Over LAN Using SQL Workbench
Jul 22, 2024.
Learn how to connect to a MySQL database over a local area network (LAN) using SQL Workbench. This guide covers finding the IP address of the MySQL server, configuring it for remote access, setting up firewall rules, and establishing a connection from a client machine.
Getting Started with ADO.NET
Jul 22, 2024.
ADO.NET (ActiveX Data Objects . NET) is a set of classes in the .NET Framework that provides access to data sources such as SQL Server, Oracle, and other databases. It is a part of the larger .NET ecosystem, enabling developers to interact with data in a structured and efficient manner.
Setting Up Your First ADO.NET Project
Jul 22, 2024.
ADO.NET is a set of classes that expose data access services for .NET Framework programmers. It provides a rich set of components for creating distributed, data-sharing applications. This guide will walk you through setting up your first ADO.NET project, connecting to a database, and executing simple queries.
Working with Connection Objects in ADO.NET
Jul 22, 2024.
ADO.NET is a set of classes that expose data access services for .NET Framework programmers. A primary feature of ADO.NET is the ability to work with disconnected data. However, working directly with databases is often necessary, and this is where connection objects come into play.
Using .NET Standard in Cross-Platform Development
Jul 17, 2024.
In today's diverse technological landscape, developing applications that run across multiple platforms is crucial. .NET Standard plays a pivotal role in achieving this goal by providing a consistent set of APIs that can be used across different .NET implementations.
Harnessing Efficiency: Lazy Initialization in C# .NET
Jul 17, 2024.
Learn about lazy initialization in C# .NET—a vital design pattern that defers object creation until it's needed, optimizing performance and memory usage. Implementing with Lazy<T> ensures thread safety and responsiveness, ideal for applications needing efficient resource management and scalability.
String.Join vs Loops in C#
Jul 17, 2024.
String.Join vs. Loops: C#" explores the efficiency and performance differences between using String.Join and traditional looping methods for string concatenation in C#.
Get Index Position of Nth Occurrence of a Character in String in Azure Data Factory
Jul 12, 2024.
In this article, we will learn how to efficiently locate the index position of the Nth occurrence of a specific character within a string using Azure Data Factory.
How to connect to MongoDB locally using .NET console application
Jul 10, 2024.
Learn how to establish a local connection to MongoDB using a .NET console application. This tutorial guides you through setting up MongoDB, configuring your .NET environment, writing code to connect to MongoDB locally, and performing basic CRUD operations.
Split a String into an Array of Characters with No Delimiter in Azure Data Factory
Jul 09, 2024.
Explore splitting strings into character arrays without delimiters using Azure Data Factory or Synapse Pipeline with sequential For Each iterations and the Substring function for precise character extraction. Ideal for structured data processing in cloud environments.
What is TDS Endpoint and How to Enable TDS in Dynamics 365 Customer Engagement/CRM Online?
Jul 08, 2024.
TDS (Tabular Data Stream) is pivotal for accessing Dataverse data securely in Dynamics 365 CE and Power Platform. It integrates with SSMS and Power BI, ensuring native security while enabling robust reporting and analytics.
How to Convert varbinary to Base64 String in SQL Server
Jul 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.
Comparing Performance: Regex vs String Methods in C#
Jun 27, 2024.
In C#, developers choose between Regex and string methods for manipulating strings. String methods are faster and more readable for simple tasks, while Regex excels in handling complex patterns and advanced text processing.
API vs Service vs Function Connections in Azure Logic Apps
Jun 24, 2024.
Azure Logic Apps helps automate tasks, business processes, and workflows by connecting to various services. API Connections integrate with third-party and Azure APIs, Service Provider Connections directly link to Azure services, and Function Connections execute custom serverless logic.
How To Connect Database in ASP.NET MVC using C# with ADO.NET
Jun 17, 2024.
Learn how to integrate SQL Server with your MVC application, configure connection strings, and perform CRUD operations. Ideal for developers seeking to enhance their data access techniques in ASP.NET.
C# Comparison Fundamentals: Best Practices and Tips
Jun 11, 2024.
Comparison operations are a fundamental aspect of programming in C#. Whether you're comparing primitive types, strings, or objects, or handling null values, understanding the nuances of comparison can enhance both the performance and readability of your code.
Oracle Stored Procedure Output Parameters with Dapper in ASP.NET Core
Jun 11, 2024.
This article provides a detailed guide to integrating Oracle stored procedures with ASP.NET Core using Dapper, focusing on handling output parameters, which can often be a challenging aspect of database interactions.
Using String-Based Enums in C#
Jun 10, 2024.
In many applications, it is necessary to represent enumerations with string values rather than their default integer values. This can be particularly useful when working with JSON, XML, or other data formats where string representations are more meaningful or required.
Implementing Model Binding in ASP.NET Core Web API
Jun 10, 2024.
Model binding in ASP.NET Core automates the conversion of HTTP request data into .NET objects, simplifying data transfer between client-side requests and server-side code. It supports various data sources such as query strings, form data, route parameters, JSON payloads, and custom binders, enhancing API development efficiency.
Understanding String, StringBuffer and StringBuilder in Java
Jun 06, 2024.
This article delves into the fundamental concepts of String, StringBuffer, and StringBuilder in Java. It explains the differences between these three classes, their specific use cases, and performance implications.
Difference between String & StringBuilder in .NET C#
Jun 05, 2024.
In .NET C#, String is immutable, meaning any modification creates a new instance, which can be inefficient for frequent changes. StringBuilder is mutable, designed for dynamic string manipulation without creating new instances.
Connect to SQL Server with SSMS Methods and Authentication Types
May 31, 2024.
Connecting to SQL Server using SQL Server Management Studio (SSMS) involves selecting a connection method and authentication type. Methods include specifying the server name and instance.
Verbatim String Literals vs Raw String Literals in C#
May 27, 2024.
String handling is a crucial aspect of programming, and C# provides multiple ways to manage strings effectively. This article compares verbatim string literals and raw string literals, highlighting their features, use cases, and differences.
String Builder in .NET C#: Usage, and Example
May 26, 2024.
Since the string type in C# is immutable, we are unable to alter its contents once they are created. This implies that attempting to modify a string-type object after it has been created will result in the creation of a new instance of the object in memory.
Understanding Your Internet Speed Converting Mbps to MBps
May 24, 2024.
Understanding your internet speed is crucial for efficient online activities. This guide simplifies the conversion process from Mbps to MBps, helping you grasp the difference between megabits and megabytes per second.
Understanding ToString() vs Convert.ToString() in C#
May 23, 2024.
In C#, both ToString() and Convert.ToString() are used to convert objects to their string representation. However, they have different usages and behavior. Understanding the differences between these two methods can help you choose the right one for your needs.
String in .NET C#: Usage, and Example
May 16, 2024.
A string in C# is an object belonging to the String class that symbolizes a string of characters. Numerous operations, including length, concatenation, comparison, obtaining substring, search, trim, replacement, and more, can be carried out on strings.
What is Slicing in Python with Example
May 13, 2024.
Python's slicing feature efficiently extracts elements from sequences like lists, strings, and tuples. This article illuminates slicing's syntax, usage, and examples, catering to beginners and experienced developers alike.
Understanding the Connections Between Classes in OOP
May 10, 2024.
Understanding how different tools in a toolbox are used to build something. This guide helps you see how these classes share information and work together to create software, making it easier to understand how programs are put together using Object-Oriented Programming (OOP).
Connecting Grafana to Data Sources
May 06, 2024.
Connect Grafana to databases, APIs, and more for powerful data visualization. Link MySQL, PostgreSQL, or InfluxDB seamlessly and extend with plugins for MongoDB, Kafka, REST APIs, and cloud platforms like Azure Monitor.
Convert Rows to CSV & Eliminate Duplicates in SQL Server
May 06, 2024.
Using SQL Server's string aggregate function, efficiently transform row data into a comma-separated format, while simultaneously removing any duplicate entries, ensuring data integrity and optimization.
How to Modify String in C# .NET
May 03, 2024.
This article demonstrates several techniques to produce a string by modifying an existing string. You can examine the original string and the new, modified string when you run each example.
Database Connectivity in Visual Studio
May 03, 2024.
Visual Studio facilitates robust database connectivity through technologies like ADO.NET and Entity Framework. Developers can seamlessly integrate with SQL Server, MySQL, Oracle, and more using connection strings and data source management tools.
Exploring String Searching Techniques in C#
May 02, 2024.
Searching for substrings within strings is a fundamental operation in software development, and in the context of C# programming, there are several techniques and methods available to accomplish this task efficiently. In this article, we will explore various string searching techniques in C#.
Exploring Anagram Strings in C#
Apr 26, 2024.
An anagram of a string is another string that uses the same characters but in a different order. This article delves into solving anagrams using C#, exploring methods like sorting characters, frequency counting, and even employing the bubble sort algorithm.
Concurrent Dictionary for String Comparison in .NET Core
Apr 20, 2024.
In .NET Core, the `ConcurrentDictionary<TKey, TValue>` class provides a thread-safe collection for storing key-value pairs, making it suitable for concurrent operations in multi-threaded environments. When it comes to comparing two strings concurrently, we can leverage ConcurrentDictionary along with appropriate methods to achieve efficient
Rename the "Related" entities in Dynamics 365
Apr 06, 2024.
Rename the "Related connections" entity to "Account-Connections" in CRM, follow steps Login, navigate to Advanced settings, open solution, access Account entity forms, edit "Connections" label, save, publish. Verify the change in an account record.
Multilingual Application with single Resx file - Forms Validation Strings
Apr 01, 2024.
Learn how to create multilingual applications using ASP.NET 8 in this third part of our series. Explore efficient techniques for managing form validation strings using a single Resx file, ensuring seamless user experience across different languages.
How to Enable and Disable Plugin in D365 using Power Shell Script
Mar 31, 2024.
Learn to control Dynamics 365 (D365) plugins effortlessly with PowerShell scripting. This guide demonstrates enabling and disabling plugins seamlessly. Harness Invoke-RestMethod to manage SDK Message Processing Steps, adjusting state and status codes.
String vs StringBuilder in C# with Example
Mar 29, 2024.
In this article, we have explained the difference between String and StringBuilder in C# with example. Know the basic knowledge of String and StringBuilder in C#.
String Handling Functions implementation in C Language
Mar 29, 2024.
In C programming, strings are fundamental for working with textual data. Unlike some other languages, C handles strings using character arrays with a null terminator.
Activate & Deactivate Account Record in Dynamic 365 with PowerShell
Mar 28, 2024.
InteractiveMode prompts user for login in Dynamics CRM, storing connection in $conn. BypassPluginExecution set to true avoids plugin execution.Set-CrmRecordState modifies record state in CRM using specified entity, ID, and state/status codes.
Create Service Connections in Azure DevOps
Mar 28, 2024.
Learn how to set up service connections in Azure DevOps for seamless integration with Power Platform. Follow step-by-step instructions to configure essential details like Server URL, Tenant ID, Application ID, and Client Secret. Grant access permissions and save your service connection for successful integration.
Convert Attachment to Base64 in Power Apps for Email Attachments
Mar 27, 2024.
Convert attachment files into Base64 strings in Power Apps. Use Power Automate to trigger email creation, dynamically attaching the Base64-encoded files. Streamline workflow, automating attachment handling and email sending seamlessly.
Creating Contact Record in Dynamics 365 with PowerShell Attributes
Mar 20, 2024.
Learn to efficiently create Contact records in Dynamics 365 using PowerShell, covering all attribute types. Utilize Microsoft.Xrm.Data.PowerShell module for seamless CRMOnline connection and managing various data types like lookup, option set, money, boolean, and date.
Handling JSON in C#
Mar 16, 2024.
C# provides seamless JSON handling with System.Text.Json. Easily parse JSON strings into C# objects and vice versa for efficient data manipulation.
Auto-Populate Azure Pipeline Variables and Connections
Mar 11, 2024.
In this article we will discuss how deployment settings file can be used to auto-populate environment variables and connection references in target environment.
How to Extract Initials from a String in Vue.js
Mar 06, 2024.
To extract initials from a string in Vue.js, you can create a custom filter or method. Define a filter or method to process the string and return the initials, providing flexibility in implementation.
Reverse String Filter in Vue.js
Mar 06, 2024.
To reverse a string in Vue.js, create a custom filter that reverses the characters. Define the filter, register it globally, and apply it in Vue component templates for efficient string reversal.
Template Literals In JavaScript
Feb 24, 2024.
JavaScript template literals are an effective tool for working with and creating strings. They were first included in ECMAScript 6 (ES6).
String.IsNullOrEmpty() vs String.IsNullOrWhiteSpace()
Feb 13, 2024.
Learn when to use String.IsNullOrEmpty() and String.IsNullOrWhiteSpace() in C#. Understand their differences for effective null and whitespace checks, enhancing data validation and code reliability.
Resolving Database Reconnection Challenges in .NET with Polly
Feb 13, 2024.
This content provides an overview and detailed implementation guide of utilizing the Polly library for connection retry in .NET applications. It demonstrates creating an Employee class and table, simulating temporary database disconnection.
Implementation of the Azure AD Authentication Connection using .Net Maui
Feb 11, 2024.
In this article, I will explain about .NET MAUI Authentication implementation using visual studio 2022. Authentication is the process of obtaining identification credentials such as name and password from a user and validating those credentials against an authority. The entity that submitted the credentials is considered an authenticated identity if the credentials are valid. Once an identity has been established, an authorization process determines whether that identity has access to a given resource or not and Microsoft Data sync Framework has built-in support for any authentication provider that uses a Json Web Token (JWT) within a header of the HTTP transaction. This application uses the Microsoft Authentication Library (MSAL) to request such a token and authorize the signed in user to the backend service. Although we use Microsoft Entra ID for authentication, you can use any authentication library you wish with Azure Mobile Apps.
Working with Service Connections in Azure DevOps
Feb 01, 2024.
In this article, we will discuss how we can set up service connections and use them in Azure pipelines. Azure DevOps relies on service connections to integrate with external services. Secure connections streamline Azure DevOps with Azure, GitHub, and Power Platform, enabling deployment, integration, and ALM processes.