Resources  
  • Real-time Web Applications with SignalRJul 16, 2024. SignalR, a Microsoft library for .NET applications, enables real-time web functionality by allowing server-side code to push updates to connected clients instantly. It abstracts complexities of communication protocols, and supports multiple transport mechanisms like WebSockets and SSE.
  • Get Index Position of Nth Occurrence of a Character in String in Azure Data FactoryJul 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 applicationJul 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 FactoryJul 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 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.
  • 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 AppsJun 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.NETJun 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.
  • Oracle Stored Procedure Output Parameters with Dapper in ASP.NET CoreJun 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.
  • C# Comparison Fundamentals: Best Practices and TipsJun 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.
  • Implementing Model Binding in ASP.NET Core Web APIJun 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.
  • 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.
  • Understanding String, StringBuffer and StringBuilder in JavaJun 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 TypesMay 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 ExampleMay 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 MBpsMay 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 ExampleMay 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 ExampleMay 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 OOPMay 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 SourcesMay 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 ServerMay 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# .NETMay 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 CoreApr 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 365Apr 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 StringsApr 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 ExampleMar 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 LanguageMar 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 DevOpsMar 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 AttachmentsMar 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 AttributesMar 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 ConnectionsMar 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.jsMar 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 JavaScriptFeb 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 PollyFeb 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 MauiFeb 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 DevOpsFeb 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.
  • High-Performance Apps Using C# Span<T>Jan 29, 2024. Often in application we come scenarios where we need to perform string manipulation operations. In such cases using string type take up huge memory as it is immutable. Instead Span can be used, which saves memory
  • Lazy Loading In ASP.NET Core 7 Web APIJan 22, 2024. ASP.NET Core 7 Web API. Lazy loading is a technique where related data is only loaded from the database when it is explicitly requested. In Entity Framework Core, lazy loading can be achieved by marking navigation properties as virtual.
  • Concatenate Two Strings in C# Jan 17, 2024. In C#, string concatenation can be achieved using the + operator, String.Concat method, String.Join method, or string interpolation. Choose the method that suits your coding style and project requirements.
  • Sending SMS Notifications with Azure Communication Services in .NETJan 07, 2024. Learn to send SMS notifications with Azure Communication Service using .NET. Follow simple steps like installing the SDK, importing libraries, setting up connection strings, and sending SMS messages with ease.
  • Common Mistakes and How to Avoid Them in C# Jan 05, 2024. In this article, we will learn how to avoid common mistakes in C# programming. From efficient null checking and using tuples instead of classes to optimizing string concatenation and evaluating default values correctly.
  • JavaScript Replace SpacesDec 27, 2023. Learn how to use the JavaScript replace() method to remove spaces from a string and replace them with another character. The JavaScript replace() method is mostly used to replace the spaces in this article. So here is a quick introduction to the replace() method.
  • API Development Using Dapper and Microsoft Asp.NET Core Web API Dec 24, 2023. ASP.NET Core is a powerful framework for building web applications, and &quot;Dapper&quot; is a popular micro ORM (Object-Relational Mapping) that works well with ASP.NET Core for database operations. Dapper provides a simple way to interact with databases using raw SQL queries while mapping the results to objects.
  • Reverse String Pipe in AngularDec 14, 2023. Learn how to create a custom pipe in Angular to reverse a string. Follow the steps to generate a pipe, implement the logic, and use it in your Angular application.
  • How to Extract Initials from a String in AngularDec 13, 2023. In this article, we will learn how to extract initials from a string.
  • Dealing with Date and Time in Humanizer in C#Dec 01, 2023. Learn how to handle date and time in a user-friendly way in C# projects using Humanizer. Covering DateTime and TimeSpan humanization with customization options and real-world use cases for improved user experience.
  • String Constants in PostgreSQLDec 01, 2023. Delve into PostgreSQL&#39;s handling of string constants, which is essential for managing text data. Explore their syntax, handling of special characters, and their versatile use in variable assignment, function arguments, comparisons, and more. Examples demonstrate their significance in tasks like substring replacement, regular expression matching, and date conversion. Elevate your PostgreSQL proficiency in manipulating and storing text data with these insights.
  • Getting Started with Humanizer in C#Nov 27, 2023. In this article, we&#39;ll explore how to install and use Humanizer in C#, unveiling both its basic and advanced capabilities. By the end, you&#39;ll be equipped to elevate the user experience in your C# applications with Humanizer.
  • Data Types In JavaScript Nov 10, 2023. Data types is most important concept in javascript and very useful logic in programming.Best concepts for fresher interview questions.
  • How to use Power Automate to split a string into an arrayNov 06, 2023. This article explains how to turn a string into an array using the Power Automate split function.
  • Java 21: New Features and ExamplesNov 02, 2023. Java 21 is a major release that includes a number of new features and improvements that make Java more concise, expressive, safe, and performant. Some of the most significant new features include record classes, sealed classes, pattern matching for instanceof, virtual threads, and sequenced collections.In short, Java 21 is a must-have update for any Java developer. It includes a number of new features that can help you to write better code, faster.
  • SQL Server Connection Error: Network Issue Oct 25, 2023. a network-related or instance-specific error occurred while establishing a connection to sql server. the server was not found or was not accessible. verify that the instance name is correct and that sql server is configured to allow remote connections. (provider: named pipes provider, error: 40 - could not open a connection to sql server)
  • Convert String to JSON using Power Automate Microsoft Flow Oct 18, 2023. Learn to convert a string to JSON in Power Apps. Explore two methods: the JSON expression and the Parse JSON Data Operation, followed by reading the JSON data for effective data manipulation.
  • Securing .NET/ASP.NET Core Apps with Azure Key Vault Middleware Sep 08, 2023. Securing secrets in a .NET/ASP.NET Core application using Azure Key Vault is crucial for protecting sensitive information like API keys, connection strings, and other configurations. In this example, we&#39;ll walk through creating an ASP.NET Core application that leverages Azure Key Vault to store and retrieve secrets. We&#39;ll also implement a custom middleware for secure secret retrieval in real-time.
  • How to Get Query String in JavaScriptAug 22, 2023. This article will discuss using JavaScript to get Query String from a Web Page.
  • String Methods in JavaScriptAug 22, 2023. Explore essential JavaScript string methods in this guide. Learn to manipulate, extract, and transform strings using functions like charAt, concat, includes, indexOf, and more. Start mastering JavaScript string manipulation today!
  • Convert String into Array in JavaScriptAug 21, 2023. Efficiently transform strings into arrays in JavaScript. Explore split() method, custom delimiters, and JSON conversion.
  • Constant Interpolated Strings in C# Aug 18, 2023. Explore interpolated strings in C#, a powerful feature for expressive string formatting. Learn about constant interpolated strings introduced in C# 10, enhancing readability and performance. Understand benefits, use cases, and considerations for improved code quality and maintainability.
  • Converting Strings to Numbers in C#Aug 04, 2023. In this article we learn about how to convert string to numbers in c#
  • Converting Strings in C#: JSON, Base64, XML, CSV and ReverseJul 19, 2023. Discover Ziggy Rafiq&#39;s comprehensive guide on converting strings to JSON, Base64, XML, and CSV formats using C#. Plus, learn how to reverse the process effortlessly. Don&#39;t miss out on this must-read article!
  • How to work with the MongoDB in VS-Code? Jul 07, 2023. How to work with the MongoDB in VS-Code
  • Parse JSON String in C#Jun 07, 2023. Code example of how to parse a JSON string in C#
  • Convert string to JSON in C#Jun 06, 2023. Code example of how to convert string to JSON in C#
  • Convert a JSON object into a string in C#Jun 03, 2023. Code example of how to convert an object into a JSON string in C#.
  • How to Create A JSON String In C#?Jun 01, 2023. How to create JSON object in C#
  • String Operations in Rust: A Beginner's GuideMay 08, 2023. In this article we learn about how to perform string operations in Rust, including reading, manipulating, and transforming strings, through a variety of examples
  • How to Initialize String Array With Default Values In C#May 04, 2023. In this article, you will learn about How to initialize string array with default values in C#
  • Globalizing Strings in Microsoft .NET with the Multilingual App ToolkitMay 02, 2023. In this article, I will demonstrate how to do this and introduce you to the Multilingual App Toolkit, which makes string translation fast and cost-effective. It was so simple that I only needed a few hours (including my learning curve) to convert the Spargine Dev Tool to Danish, Hindi, and Spanish.
  • Optimizing Your Azure ExpressRoute Connection with Traffic CollectorsMay 01, 2023. ExpressRoute is a service provided by Microsoft Azure that enables customers to establish private, dedicated connections between their on-premises infrastructure and Azure datacenters. To monitor and analyze the traffic flowing over an ExpressRoute connection, customers can use traffic collectors.
  • Strings In RustApr 27, 2023. In this article, we discuss what is a string in Rust, the type of string in Rust, and how to use them.
  • Using C# 12's Interpolated Strings For More Concise And Readable CodeApr 19, 2023. Using C# 12&#39;s Interpolated Strings for More Concise and Readable Code
  • How to remove duplicate words from string in C#Apr 14, 2023. This article covers all possible methods of removing duplicate words from string in C# with code examples and explanations.
  • How to Use GUIDs in C#?Apr 14, 2023. We are discussing GUIDs (Globally Unique Identifiers) which are commonly used in C# to create unique identifiers for objects, entities, and resources in a system. In this article, Ziggy Rafiq will take us through the fundamentals of GUIDs in C#, their benefits, and how to convert strings to GUIDs.
  • Find the Longest Common Prefix in C#Apr 12, 2023. In this article, we will see the longest common prefix in C#
  • How To Truncate String In C#Apr 12, 2023. If you&#39;re looking to learn how to truncate a string in C#, then you&#39;ve come to the right place. This article will provide you with the necessary information to accomplish this task efficiently and effectively. Don&#39;t waste any more time searching for answers - read on and become a master of C# string truncation today! By Ziggy Rafiq
  • How To Split A String Using Backslash As Delimiter In C# With Code ExamplesApr 10, 2023. Learn how to easily split a string in C# using a backslash delimiter with code examples, courtesy of Ziggy Rafiq&#39;s informative article. Master this essential skill today!
  • Count Number Of Character Occurrences In A String Using JavaScriptApr 04, 2023. In this article, I am going to demonstrate various way to count number of character occurrences in a string javascript
  • Source Control (7), GitLab Access (Setup Connection And Clone To Local)Mar 27, 2023. This article will discuss GitLab access: setup connection and clone to local.
  • The Ultimate Guide to Converting Strings to Numbers in JavaScriptMar 12, 2023. Looking to convert strings to numbers in JavaScript? Our comprehensive guide covers various methods, including type coercion, parseInt, and more! Perfect for software developers.
  • Compare Comma Seperated Values in SQLMar 09, 2023. In this article, we will see how we can compare the comma-separated values with existing values stored in the table. Values can be in a different order from the user or table. We have to first order it both sides and then compare them.
  • Best Algorithm For Encrypting And Decrypting A String In C#Jan 31, 2023. In this article, we learn about how to encrypt and Decrypt a String in C#.
  • The Power BI Release Plan Report Connection InstructionsJan 17, 2023. In this article, you will learn about Power BI Release Plan report connection instructions.
  • Raw String Literals - New Feature In C#11 With .NET 7Jan 14, 2023. Microsoft released .NET 7 on 14th November 2022 with C#11. We will look at string literals features of C#11 in this article.
  • String Interpolated New Line In C# 11 | Learn C#Dec 16, 2022. In this article, we gonna discuss the new feature String interpolated new line in C# 11 with examples. C# programming language was launched in 2000 and now it is at its version 11.
  • Monitoring VPN Connectivity From Azure Virtual Machine To On-premises ServerDec 15, 2022. The Azure connection monitor is a perfect monitoring tool that generates synthetic traffic to test the connectivity and measure response time; in this article, we will learn how to monitor Network connectivity from Azure Virtual Machine to On-premises Servers.
  • UTF-8 String Literals In C# 11 | Learn C#Dec 14, 2022. In this article, you will learn about UTF-8 string literals in C# 11.
  • Using Multi-Line String Literals In .NET 7Dec 02, 2022. In this article, you will learn how to use Multi-line String Literals in .NET 7.
  • How To Configure Network Security For Azure App Service PlanNov 30, 2022. In this article, you will learn how to configure network security for azure app service plan.

About Connection-string

NA

OUR TRAINING