Resources  
  • 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.
  • Explain Naming Conventions in C#Mar 21, 2024. Naming conventions are a set of rules and guidelines used for naming variables, functions, classes, and other entities in a programming language. They help improve code readability, maintainability, and consistency across projects.
  • Exploring Inter-Process Communication in WPF Using Named PipesMar 19, 2024. In a WPF application, inter-process connectivity typically involves communication between different components or modules within the same application or between separate WPF applications running on the same system or across different systems.
  • Establishing Communication Between Executable Files Using TCP/IPMar 19, 2024. WPF apps use various IPC methods like Named Pipes, WCF, TCP/IP Sockets. TCP/IP sockets offer cross-platform communication with advantages like reliability but face complexity and firewall issues. Steps include server/client development, execution instructions. Use CommonHelper for collaboration.
  • Vue.js Multi-Word Component Naming RecommendationsMar 18, 2024. Using multi-word component names in Vue.js enhances code readability, clarity, and consistency. It helps in avoiding naming collisions and makes code more accessible and maintainable. Examples illustrate these benefits.
  • How to Pass Credentials as Parameters in PowerShellMar 09, 2024. In this article we will learn how to pass credentials as parameters in PowerShell. Learn how to pass credentials as parameters in PowerShell using PS objects. Follow step-by-step instructions to update a SharePoint Online site title using SPO PowerShell module with credential parameters.
  • Set the Default Name for Connected Chats in Dynamics 365Mar 06, 2024. As an administrator, configure Microsoft Dynamics 365 to set the chat title as the default record title. In Sales Hub app settings, under Chat and Collaborate, choose a record type, enable Auto-name chats, and save changes.
  • How to Do Zone Transfer in Windows ServerMar 01, 2024. Zone transfer is a crucial process for synchronizing DNS zone data across multiple servers, ensuring all DNS servers responsible for a domain remain updated with the latest information. By following the step-by-step instructions outlined in the article, users can configure zone transfer between primary and secondary DNS servers effectively.
  • How to Pass a Parameter to Event Handler or Callback in React.jsFeb 22, 2024. In React, passing parameters to event handlers can be done using arrow functions or the bind method. Choose the approach that suits your project for optimal performance and readability.
  • Get Browser Type and Version Using Angular and BootstrapFeb 19, 2024. This article provides a detailed guide on how to detect the browser version and name in an Angular application. It covers steps to create a service for browser detection, configure browser name and version detection methods
  • Parameter Binding in Minimal API in ASP.NET CoreFeb 06, 2024. When building web applications using ASP.NET Core, developers often need to handle incoming data from HTTP requests. One crucial concept that helps achieve this is called parameter binding. Let's break down this fundamental idea in the context of Minimal API in ASP.NET Core.
  • JavaScript Destructuring: Arrays, Functions, and ObjectsJan 31, 2024. Destructuring is a powerful feature in JavaScript that allows you to extract values from arrays, objects, and function parameters easily.
  • Power BI Parameters for Efficient Data Source ConfigurationJan 30, 2024. This article is about using Power BI Parameters for Data Source Configuration. In this Power BI project, connecting to an on-premise Business Central instance posed challenges during deployment. The solution involved using Power BI Parameters for dynamic and configurable data source connections.
  • The Term Oh-My-Posh Is Not Recognized as a Name of CmdletJan 22, 2024. This article explains how to set up oh-my-posh on Windows PCs. From the references, the steps can be found to implement for Linux and MAC OS as well.
  • How to Create Reusable Confirmation Modals in Blazor ServerJan 17, 2024. In this article, we will learn how to make confirmation pop-ups in your Blazor Server applications easily. Follow a step-by-step guide using parameters and EventCallback to create reusable models, making your app more user-friendly and efficient
  • Understanding and Managing Server-Side (Output) Caching in .NetJan 15, 2024. IIS employs System.Web.Caching for efficient output caching. Utilize HttpRuntime.Cache.Insert for CRUD operations, specifying key, value, and optional parameters like dependencies, absolute expiration, and sliding expiration for optimization.
  • Real-Time Paris Metro Crowdedness Forecast: A Proof of Concept with Azure and C#Jan 08, 2024. In this article, we will learn about navigating you through crafting a prototype for forecasting crowd levels in Paris Métros using Azure and C#. It covers Azure setup, machine learning, model deployment, streaming pipeline creation, and user application integration.
  • Default Lambda Parameters in C# 12Jan 05, 2024. C# 12 introduces a game-changer: default lambda parameters. This article delves into this powerful feature, showcasing its functionalities, advantages, and practical applications through detailed examples across diverse scenarios. Learn how to reduce code duplication and enhance readability.
  • Safely Changing the Instance Name of SQL ServerJan 04, 2024. Changing the instance name of a SQL Server involves several steps and should be done with caution. Secure process for changing the instance name of SQL Server. This guide ensures a smooth transition, covering essential steps and precautions to safeguard your SQL Server configuration.
  • Ref Readonly Parameters in C# 12Jan 03, 2024. C# 12 unveils a hidden gem: ref readonly parameters. This article delves beyond the surface, offering a deep dive into their benefits, usage patterns, and how they differ from familiar options like ref and in. Embrace their power for safer, clearer, and more efficient code. In the current digital era, we try to de-couple applications from one another so it is supposed to adapt to plug it in another version or another application easily.
  • Exploring Default Lambda Parameters in C# 12Jan 01, 2024. Default Lambda Parameters in C# 12.
  • Split Camel Case to Space using Angular PipeDec 27, 2023. Master the creation of an Angular pipe to effortlessly split camelcase text with spaces. Follow the prerequisites, and steps, and enhance your Angular app for improved readability.
  • Table(s): Temp Table, Table Variable and CTE (Common Table Expression)Dec 26, 2023. This article will discuss SQL Table like items, including temp table, table variable, CTE, Table-valued Parameters.
  • Clean Code : Avoid Too Many Parameters In MethodDec 18, 2023. In this article I will demonstrate code clean up by passing less number of parameters in method. One common challenge developers face is the Excessive parameters in their methods. Excessive parameters in methods can lead to code that is hard to understand, less readability, and challenging to maintain.
  • How to Convert a Month Number to Month Name in PostgreSQLNov 28, 2023. Learn how to convert a month number to a month name in PostgreSQL using the versatile to_char function. Explore format strings like 'Month' and 'Mon' for full and abbreviated names.
  • New Name of Azure Active DirectoryNov 02, 2023. Did you notice Azure Active Directory's exciting new name? The name change from Azure Active Directory (Azure AD) to Microsoft Entra ID signifies an important evolution in the product's capabilities and the broader vision of the Microsoft Entra product family.
  • Optional Parameters in SQL ServerOct 26, 2023. Optional parameters in SQL Server refer to the capability of defining parameters within SQL queries that can be left unspecified or set to default values if not provided by the user. This feature enhances the flexibility of SQL statements by allowing developers to create dynamic queries that adapt to different scenarios. By specifying default values or leaving parameters unassigned, optional parameters provide a means to simplify queries while accommodating various filtering or search criteria. This is particularly useful when constructing stored procedures, user-defined functions, or queries in applications where certain parameters may or may not be needed, offering a more versatile and adaptable approach to database interactions in SQL Server.
  • Constructors in C#Oct 12, 2023. In C#, constructors are essential methods responsible for initializing and creating objects within a given class. These functions are invoked when you create an instance of the class. Constructors share the same name as the class and do not have a return type. In C#, there are several fundamental types of constructors.
  • C# Composite Design PatternSep 26, 2023. Discover the power of the Composite design pattern in C#, a structural pattern that unifies objects into tree structures, simplifying complex hierarchies for versatile software development.
  • Unlocking C# Chain of Responsibility PatternSep 25, 2023. In software design, maintaining the separation of concerns is fundamental. This principle not only enhances code modularity but also ensures each module has a single responsibility. However, as applications grow in complexity, managing the flow of responsibilities can become challenging. This is where design patterns come to the rescue. Among them, the Chain of Responsibility pattern stands out as a robust tool for handling responsibilities in a flexible and decoupled manner.
  • PowerShell File Search AutomationSep 22, 2023. This PowerShell script automates file detail retrieval within a specified folder. It filters files by extension, displaying their name, size, and type, simplifying tasks like listing text files.
  • Proxy Pattern in C#Sep 22, 2023. Learn about the Proxy Pattern in C#, a powerful structural design pattern. Explore its purpose, implementation, and real-world applications, enhancing software efficiency, maintainability, and scalability. Happy Learning!
  • Exploring Decorator Pattern in C# Sep 21, 2023. Exploring the Decorator Pattern in C#.the Decorator Pattern stands out as a versatile tool for extending the functionality of classes without altering their structure. In this article, we will delve into the Decorator Pattern and how it can be implemented in C#.
  • Understanding the Flyweight Design Pattern in C#Sep 20, 2023. Explore the Flyweight Design Pattern in C#, a memory-efficient structural pattern. Learn to optimize performance by sharing common properties among objects, improving application efficiency.
  • Understanding the Factory Design Pattern in C#Sep 19, 2023. Understanding the Factory Design Pattern in C#
  • Custom Exceptions in C#Sep 19, 2023. Enhance error handling in C# with custom exceptions. Learn how they provide specificity, control, documentation, and maintainability, and follow best practices for effective implementation.
  • Adapter Pattern in C# Sep 19, 2023. Demystifying the Adapter Pattern in C#: Bridging the Gap Between Incompatible Interfaces
  • Routing in ASP.NET CoreSep 18, 2023. In this article, we delve into ASP.NET Core routing, a fundamental component of web applications. Routing determines how incoming requests are matched to specific actions and controllers, playing a pivotal role in efficient HTTP request handling. We explore the key concepts of ASP.NET Core routing, such as route templates, route values, constraints, and route parameters. Additionally, we provide practical examples to illustrate the implementation of routing in ASP.NET Core.
  • Exploring Anonymous Functions in C# Sep 18, 2023. Exploring Anonymous Functions in C#
  • Power BI What-If AnalysisSep 12, 2023. Power BI What-If Analysis: Unleash Data-Driven Decision Making
  • Insert JSON Array into Table with Stored Procedure ParameterSep 04, 2023. Learn how to efficiently save and insert JSON array data into a database table using SQL Server's T-SQL language, with adaptable concepts for other database systems.
  • Structs in C#Aug 28, 2023. Discover the significance of C# structs - lightweight alternatives to classes. Efficiently manage memory and enhance performance with value types while considering scenarios and pitfalls for optimal implementation.
  • Sealed Classes in C# Aug 28, 2023. Delve into the significance of sealed classes in C# OOP. Uncover their role in defining code boundaries and inheritance. Gain insights into their benefits, optimizing security and performance. Master the art of using them judiciously for enhanced code predictability and maintainability.
  • Private Constructor in C# Aug 28, 2023. Explore Private Constructors in C#: Unveiling Their Roles and Significance. Discover how these constructors influence design patterns like Singleton, control object creation, and encapsulate initialization logic for improved C# applications.
  • Building a Bulk Email Sending Console App with NET Core 7.0Aug 27, 2023. Building a Bulk Email Sending Console App with NET Core 7.0 entails the creation of a robust and versatile solution tailored to efficiently manage large-scale email distributions. Through a meticulous development process, this application emerges as a vital tool for businesses and organizations seeking an effective way to reach their target audiences.
  • Generics in C# Aug 25, 2023. Harness the Versatility of C# Generics: Boost Code Reusability and Type Safety. Dive into how Generics empower adaptable, efficient code, accommodating various data types while maintaining robust type checking.
  • Delegates in C# Aug 25, 2023. Explore the fundamental potency of C# delegates—vital for encapsulating methods as first-class entities. Empower callbacks and event management for efficient C# application development.
  • Using SuperConvert.Abstraction NuGet Library for Data ConversionAug 23, 2023. SuperConvert.Abstraction is a powerful library that provides data conversion functionalities for your .NET applications. With this library, you can easily convert between different data formats, such as JSON, CSV, and XLS, using a simple and intuitive API. The library also introduces a new Dependency Injection (DI) service to streamline the usage of its features.
  • Document Viewer Capabilities in ASP.NET Core 7.0Aug 20, 2023. Learn how to integrate, customize, and make the most of the new capabilities for seamless document viewing and interaction within your web applications.
  • 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.
  • Understanding Numeric IntPtr and UIntPtr in C#Aug 18, 2023. Discover the importance of IntPtr and UIntPtr in C# programming. Learn how these types facilitate memory management, pointer arithmetic, and interop with native libraries, ensuring efficient and safe practices.
  • Types of Functions in JavaScriptAug 17, 2023. Explore various JavaScript functions in this article: Named, Anonymous, Arrow, IIFE (Immediately Invoked Function Expression), Higher-Order, and Constructor Functions. Simplified explanations and examples for each type are provided.
  • What is Delegates in C# .NET?Aug 12, 2023. Delegates in C# act as method pointers, enabling dynamic invocation of methods. They enhance code modularity and flexibility, finding use in event handling, callbacks, and asynchronous programming.
  • What is new in C# 12?Aug 08, 2023. Let’s explore the new features in C# 12 with .NET 8 and how we can use it.
  • Gradient Descent OptimizationAug 03, 2023. Gradient Descent is a popular optimization algorithm used in machine learning.
  • Flurl API Integration Tutorial for ASP.NET Core Web API with Advanced ConceptsJul 31, 2023. Flurl is a popular and easy-to-use library for working with HTTP APIs in .NET applications. It provides a fluent API for building and sending HTTP requests, as well as handling the responses in a convenient way.
  • Early Return Pattern in C#Jul 28, 2023. We will have an overview of the early return pattern and some examples in C#
  • How to Access AWS Systems Manager Parameter Store using Python?Jul 02, 2023. Learn how to access AWS Systems Manager Parameter Store using Python. Set up the project folder, install required packages, and retrieve parameter values using the boto3 library. Test the code to access parameter values from the Parameter Store.
  • Naming Convention in JavaMay 17, 2023. This article is all about the Naming convention of the Java programming language.
  • 💥Unlocking the Power of CSS: Best Practices and Sample Code for Stunning Web DesignMay 11, 2023. Best practices to follow while styling CSS
  • Component {Parameters} in BlazorApr 19, 2023. In this article we are going to learn about the how to pass parameters between components in Blazor
  • C# 12 Preview Features: Improving Productivity and PerformanceApr 17, 2023. C# 12 Preview Features: Improving Productivity and Performance
  • How To Use RedirectToAction With ParameterApr 10, 2023. In this article we will see how we can implement RedirectToAction with parameter
  • How To Add Date Time Tick To File Name Before Upload In Document Library Using Power AutomateApr 07, 2023. In this blog, we will see how to append date time tick in file name using Power Automate.
  • Avoiding Common C# Coding Mistakes - Do's And Don'ts To RememberApr 06, 2023. Here I'm explaining about the common mistakes that we must avoid while performing coding
  • Stored Procedures Vs Functions In SQL - Types, Differences, And Best PracticesApr 03, 2023. This article provides a comprehensive guide to stored procedures and functions in SQL, including their types and differences. It explains how these powerful tools can simplify database management, enhance security, and improve performance. The article also provides examples of different types of stored procedures and functions, such as simple stored procedures, input and output parameters, scalar functions, and table-valued functions. Furthermore, it highlights the differences between stored procedures and functions in terms of their usage, purpose, and return values. Finally, it includes best practices for using these tools in SQL programming.
  • How To Pass JSON As Parameter To Store ProcedureMar 17, 2023. In this article, you will learn how to pass json as parameter to store procedure.
  • AWS Systems Manager (SSM) Parameter Store In .NET 3.1 Web APIMar 16, 2023. Grab all the AWS Systems Manager (SSM) Parameter store in .NET 3.1 Web API and use them in entire project through Configuration
  • Back to Basics - How And Why Learning C# Programming LanguageFeb 13, 2023. This article is the very first of the "Back to Basics" playlist, its goal is to bring the basic knowledge to start developing with the C# language. Whether you are an experienced developer of another language such as Rust, C++, or you are a beginner looking to design applications with dotnet technologies, or even games with Unity.
  • Add And Verify Your Custom Domain In Azure Active DirectoryJan 31, 2023. This article will guide you on how to add a custom domain name and verify it for use with your Azure Active Directory,
  • Working With Parameters In Dapper ORMDec 26, 2022. In this article, I'm going to explain how we can get values from In, Out, and return parameters while working with Dapper ORM
  • No Match Was Found For The Specified Search Criteria And Module NameDec 26, 2022. This article explains the issue when the required PS module is not getting loaded and how to fix the issue by installing the module in offline mode.
  • Delete Files Based On Excel Column Name In Azure Data FactoryDec 19, 2022. In this article we are going to discuss about how to pick and delete only specific files from the ADLS directory based on filenames present inside the excel file. We are going to see this with a real-time use case.
  • Adding Branch Name In The Commit Message Automatically Using Git HooksDec 01, 2022. In this article, you will learn how to create a hook in git in order to include the branch name in the commit message automatically
  • How To Map An External Domain Name To AzureNov 01, 2022. In this article, you will learn how to map an external domain name to azure.
  • Manage Global Usings In C#Oct 22, 2022. In this article, we will learn about the keyword "global" which is introduced in C# 10.0.
  • Pass Parameters To A Webresource In Dynamics CRMOct 18, 2022. During certain scenarios we must send some parameters to a Webresource. To achieve this we must make use of comma separated list of parameters option that is present at event level of an form. As an example contact form was taken and passed first name logical name as parameter to get to know about the first name of the selected contact.
  • Cheat Sheet For Git Basic CommandsSep 14, 2022. This article provides a comprehensive list of basic Git commands essential for daily use. It covers configuring the Git environment, working with online repositories, understanding the life cycle of a Git repository, and other miscellaneous Git commands.
  • Log4Net And .NET CoreSep 06, 2022. Using Log4net in .NET Core 6 using a console application.
  • Field Parameter In Power BI DesktopSep 01, 2022. This article will demonstrate the use of field parameter in Power BI Desktop.
  • How To Give Name To A Size Column In PythonAug 10, 2022. This article explains how one can label the size column that is generated programmatically.
  • Git Hook To Validate The Branch NameJul 31, 2022. In this article we will see how we can prevent wrong format, push of branch name.
  • Another Tool For Analyzing RDB Files Of RedisJul 27, 2022. This article introduces an RDB analysis tool based on c# and explains its basic usage and how to customize it.
  • How To Sync The Application Username From AAD Registration App To Dynamics 365 CE OnlineJul 25, 2022. Synchronize the Application User Name from Azure Active Directory's Registration App to Dynamics 365 CE online.
  • How To Rename Database Objects In SQL ServerJul 13, 2022. In this article, you will learn how to rename database objects in SQL Server.
  • Functions In Flutter 3Jul 05, 2022. In this article, you will learn about functions in Flutter 3.
  • How To Restore Same Database With Different Names In SQL ServerJun 29, 2022. This tutorial will show you the steps to restore the same database with different names in SQL Server
  • Get User Name And Password At Runtime Using PythonJun 09, 2022. This article explains about how to get user name and password from user in Python.
  • Symmetrical Repository Pattern - Data Access Made Easy In .NETMay 09, 2022. In this article, I will describe an interesting pattern that can be implemented to make it trivial to perform CRUD/RESTful data access across a full-stack .net system, with this technique that abstracts away the boilerplate.
  • Understand Bound Action In Power AutomateMar 25, 2022. During certain scenarios it is required to call bound action . To call a bound action we can do it with javascript , plugins and power automate. In all the other methods except power automate you have to write explicit logic to call an bound action. As an example, we call a sample bound action which was built for contact entity/table from power automate.
  • How To Send Parameters To Event CallBacks In BlazorMar 01, 2022. In this article, we will learn what are the steps you need to take to send a parameter in event callbacks in blazor, we demonstrated the same with a Blazor server app.
  • How To Call A Function With Parameters From Multiple Screens In PowerAppsFeb 28, 2022. In this article, we will learn how we can call a function with parameters in the canvas app powerapps. Similar to javascript function calling we can also call a reusable formula in PowerApps with the help of toggle control.
  • Table As Input Parameters For Stored ProcedureFeb 21, 2022. This article will discuss the StoredProcedure Parameter: DataTable.
  • Copy File With New Name In SharePoint Document Library Using MS FlowFeb 14, 2022. In this article, we will see how can we copy file with new name from one document library to another document library using MS Flow.
  • Picking Between Blazor Server And Blazor WebAssemblyFeb 07, 2022. In this article, I will describe key differences between Blazor Server and Blazor WebAssembly, and what you should consider when deciding between project types.
  • AWS Secrets Manager Vs Parameter Store (Systems Manager)Feb 02, 2022. In this article, you will learn about AWS Secrets Manager Vs Parameter Store.
  • Extract File Names And Copy From Source Path In Azure Data FactoryJan 15, 2022. We will learn a real-time scenario on how to extract the file names from a source path and then use them for any subsequent activity based on its output.
  • How To Inherit Multiple Interfaces Having Same Method NameJan 10, 2022. In this article, you will learn how to Inherit Multiple Interfaces Having Same Method Name.
  • How To Access Parameters From AWS Systems Manager Parameter Store In .NET 6 Web APIJan 05, 2022. In this article, you will learn how to access parameters from AWS Systems Manager Parameter store in .NET 6 Web API.
  • A Fix To Typescript TS7006: Parameter 'xxxx' Implicitly Has An 'Any' TypeDec 27, 2021. In this article, you will learn about a fix to Typescript TS7006: Parameter 'xxxx' Implicitly Has An 'Any' Type.

About Csharp-Named-parameters

Csharp Named Parameters

OUR TRAINING