TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
George (3)
Venkatasubbarao Polisetty(3)
Asma Khalid(3)
Ajay Kumar(2)
Dinesh Gabhane(2)
Jitendra Mesavaniya(2)
Alkesh Bijarniya(2)
Mahender Pal(2)
Ramasagar Pulidindi(2)
Jignesh Kumar(2)
Vijai Anand Ramalingam(2)
Rikam Palkar(2)
Jignesh Trivedi(2)
Dhairya Krishnat(2)
Sumit Kharche(2)
Siddharth Vaghasia(2)
Mohammad Irshad(2)
Shikha Tiwari(1)
Nandan Hegde(1)
John Godel(1)
Kautilya Utkarsh(1)
Surya Ghimire(1)
Jaimin Shethiya(1)
Bytehide (1)
Abhishek Chadha(1)
Jobin S(1)
Arun Ramaswamy(1)
Akshima Aggarwal(1)
Sardar Mudassar Ali Khan (1)
Vinay Ayinapurapu(1)
Tuhin Paul(1)
Ashutosh Singh(1)
Santosh Karanam(1)
Jithu Thomas(1)
Shaily Dubey(1)
Gurpreet Arora(1)
Aradhana Tripathi(1)
Ashish Shukla(1)
Mohammad Hussain(1)
Vipin Mittal(1)
Ravinder Singh(1)
Guest User(1)
Jay Krishna Reddy (1)
Amit Mohanty(1)
Ishika Tiwari(1)
Diwakar Tiwari(1)
Dhanapal Chandran(1)
Piyush Kumar(1)
Shivam Payasi(1)
Muhammad Waseem(1)
Uday Dodiya(1)
Amit Bhatt(1)
Sagar Vishwakarma(1)
Navin Prakash(1)
Mayuresh Joshi(1)
Karthick S(1)
Kirtesh Shah(1)
Roshan Rathod(1)
Harshal Limaye(1)
Sean Franklin(1)
Sandhya Shinde(1)
Saurabh Vasani(1)
Satyaprakash Samantaray(1)
Santhosh Teja(1)
Catcher Wong(1)
Abhishek Mishra(1)
Praween Kumar(1)
Banketeshvar Narayan(1)
Veerendra Annigere(1)
Dhruvin Shah(1)
Priyanka Jain(1)
Mahesh Chand(1)
Eranda Horanagama(1)
Farhan Ahmed(1)
Sourabh Somani(1)
Kapil Gaur(1)
Rohit Kainth(1)
Sai Kumar Koona(1)
Akbar Mulla(1)
Monica Rathbun(1)
Resources
No resource found
The Implementation of Pointer to Function
Jun 27, 2024.
This content explores the implementation of pointers to functions in C and C++ programming. It delves into their syntax, usage, and benefits, such as dynamic function calls, callback functions, and efficient memory management.
Editing JSON of Fabric Data Pipelines - Part 1
Jun 21, 2024.
Enable JSON editing in Fabric data pipelines by appending the 'feature.enableJsonEdit=1' to the pipeline URL. Switch from view-only to edit mode, make necessary JSON changes, then perform a minor UI adjustment to activate the Save option. Similar flexibility as Azure Data Factory's PaaS environment.
C# .NET 8 SQL Bulk Insert Dapper vs BulkCopy vs Table-Value Params
Jun 18, 2024.
Explore the performance of SQL bulk insert methods in C# .NET 8 by comparing Dapper, BulkCopy, and Table-Value Parameters. This comprehensive analysis covers implementation details, efficiency, and best practices for optimizing large data insertions, helping developers choose the right approach for their projects.
Unlock Small Language Models Deep Dive Parameters Loss Optimization RAG
Jun 17, 2024.
Language models have revolutionized the field of natural language processing (NLP), enabling machines to understand, generate, and respond to human language with remarkable accuracy. At the heart of these models are key concepts that drive their functionality: parameters, loss functions, and optimization.
The Stochastic Gradient Descent
Jun 16, 2024.
This article delves into Stochastic Gradient Descent (SGD), a cornerstone algorithm in machine learning and optimization. It explains how SGD optimizes model training by iteratively updating parameters using random data subsets.
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.
Delegates in .NET Core C#: Syntax, Usage and Examples
Jun 11, 2024.
A delegate is an object that points to a method; alternatively, it may be thought of as a variable of the reference type that stores references to the methods. Function pointer in C/C++, delegates are used in C#. It offers a mechanism to specify which method should be invoked in the case that an event is triggered.
Pagination in C#: Complete Guide with Easy Code Examples
Jun 08, 2024.
Discover how to implement pagination in C# with this comprehensive guide. Learn to use ASP.NET Core, Entity Framework, and LINQ for efficient data paging. This guide covers server-side and client-side pagination, using Skip and Take methods, handling pagination parameters, and provides easy code examples for seamless integration.
Arrow Function Variants in JavaScript
Jun 03, 2024.
Arrow functions in JavaScript offer concise syntax for writing functions. They simplify coding with features like no parameter handling, optional parentheses for single parameters, and streamlined function bodies. They're versatile, applicable in various scenarios, like callbacks and high order functions.
Optimizing Performance with Dapper with .NET Core API
May 30, 2024.
Learn Dapper best practices for optimal database interaction in .NET applications. Explore techniques like using output parameters and handling multiple result sets in stored procedures. Enhance efficiency with optimized query writing for delete operations.
UnderStanding nameof Operator in C#
May 28, 2024.
The nameof Operator retrieves names of variables or members dynamically, aiding in code maintenance. Raising PropertyChanged Event notifies property changes in INotifyPropertyChanged implementations. Argument Checking and Guard Clauses ensure robust code by validating inputs.
Mastering Azure Bicep Parameters
May 07, 2024.
This article is a comprehensive guide that takes you on a deep dive into Azure Bicep parameters. It starts with logging into Azure, then moves on to explain the concept of parameters in Azure Bicep, complete with code samples and explanations.
Using Stored Procedures in MySQL Enhanced Code Performance
Apr 30, 2024.
Stored Procedures in MySQL offer a streamlined approach to executing complex or frequently used SQL logic with a single call, supporting input parameters, procedural logic, and return values.
Reversing Parameter Order with Named Arguments in C#
Apr 24, 2024.
In C#, methods often take parameters that are passed in a specific order defined by their method signature. However, there are cases where you might want to reverse the order of parameters when calling a method. One approach to achieve this is by using named arguments.
Table-Valued Parameters in SQL Server
Apr 16, 2024.
Table-Valued Parameters in SQL Server enable passing multiple rows of data to stored procedures, enhancing performance for bulk operations. Utilizing user-defined table types, they streamline data manipulation tasks and allow parameterized queries, optimizing database development and improving overall performance.
MERGE Stored Procedures in SQL Server
Apr 15, 2024.
In this article, I present how to use the MERGE statement in a stored procedure to merge a single record and how to use it to merge a list of records by using Table-Valued parameters in SQL Server.
How to Pass Credentials as Parameters in PowerShell
Mar 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.
How to Create Refs in React.js?
Feb 26, 2024.
In React, refs facilitate direct access to DOM elements or class component instances. Learn how to create, access, and use refs for tasks like focus management, animations, and third-party library integration.
Vue Template Refs Improving DOM Manipulation
Feb 22, 2024.
Vue Template Refs are a powerful feature that enables you to directly access and manipulate DOM elements in a Vue.js application. By using the ref attribute and the $refs object, you can achieve dynamic and interactive user interfaces without relying on traditional DOM manipulation methods.
How to Pass a Parameter to Event Handler or Callback in React.js
Feb 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.
Parameter Binding in Minimal API in ASP.NET Core
Feb 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.
What is Params In C#?
Jan 31, 2024.
In C# programming, the "params" keyword plays a crucial role in enhancing flexibility and convenience when dealing with methods that accept a variable number of the same type of parameters.
JavaScript Destructuring: Arrays, Functions, and Objects
Jan 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 Configuration
Jan 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.
How to Create Reusable Confirmation Modals in Blazor Server
Jan 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
Default Lambda Parameters in C# 12
Jan 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.
Ref Readonly Parameters in C# 12
Jan 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# 12
Jan 01, 2024.
Default Lambda Parameters in C# 12.
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 Method
Dec 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.
Optional Parameters in SQL Server
Oct 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.
PowerShell File Search Automation
Sep 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.
Routing in ASP.NET Core
Sep 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.
Power BI What-If Analysis
Sep 12, 2023.
Power BI What-If Analysis: Unleash Data-Driven Decision Making
Insert JSON Array into Table with Stored Procedure Parameter
Sep 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.
Passing an argument by reference in C#
Aug 20, 2023.
This article contains useful information about how to use ref keyword in your C# program with the proper and easy to understand example.
Gradient Descent Optimization
Aug 03, 2023.
Gradient Descent is a popular optimization algorithm used in machine learning.
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.
Component {Parameters} in Blazor
Apr 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 Performance
Apr 17, 2023.
C# 12 Preview Features: Improving Productivity and Performance
How To Use RedirectToAction With Parameter
Apr 10, 2023.
In this article we will see how we can implement RedirectToAction with parameter
Stored Procedures Vs Functions In SQL - Types, Differences, And Best Practices
Apr 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 Procedure
Mar 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 API
Mar 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
Working With Parameters In Dapper ORM
Dec 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
Out Vs Ref In C#
Dec 12, 2022.
In this article, you will learn about Out vs Ref in C#.
Ref vs Out In C#
Nov 11, 2022.
In this article we learn about Ref vs Out in C#.
Pass Parameters To A Webresource In Dynamics CRM
Oct 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.
Ref Vs Out And Value Type Vs Reference Type
Sep 06, 2022.
In this article, you will learn about ref vs out and value type vs reference type.
Field Parameter In Power BI Desktop
Sep 01, 2022.
This article will demonstrate the use of field parameter in Power BI Desktop.
Functions In Flutter 3
Jul 05, 2022.
In this article, you will learn about functions in Flutter 3.
Understand Bound Action In Power Automate
Mar 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 Blazor
Mar 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 PowerApps
Feb 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 Procedure
Feb 21, 2022.
This article will discuss the StoredProcedure Parameter: DataTable.
AWS Secrets Manager Vs Parameter Store (Systems Manager)
Feb 02, 2022.
In this article, you will learn about AWS Secrets Manager Vs Parameter Store.
How To Access Parameters From AWS Systems Manager Parameter Store In .NET 6 Web API
Jan 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' Type
Dec 27, 2021.
In this article, you will learn about a fix to Typescript TS7006: Parameter 'xxxx' Implicitly Has An 'Any' Type.
Usage Of uriQuery Function In Power Automate
Aug 19, 2021.
In Power Automate, most of the common scenario is to extract parameters that are present in website url, which can be achieved easily using uriQuery Function as an example.
Out Parameters In C# 7.0
Jun 02, 2021.
In this article, you will learn about Out Parameters in C#.
Fundamentals Of TypeScript
Apr 24, 2021.
In this article, you will learn about the fundamentals of TypeScript.
Site Speed Parameters
Mar 18, 2021.
In this article, you will learn about Site Speed Parameters
Add Flyout And Identify Selected Option - Dynamics 365 CE
Feb 17, 2021.
This article is about adding custom flyout button in ribbon and writing script to identify which option is selected
How To Use Query Parameters In Angular
Jan 12, 2021.
In this tutorial, we'll be looking at Query Parameters feature in Angular which lets you pass data from one route to another.
Parameters In Blazor Components (Deep Dive)
Dec 30, 2020.
Explore the intricacies of Blazor component parameters with this deep dive. Learn about data binding, lifecycle methods, and communication between parent and child components for interactive and reusable web applications.
Working With Query String (Or Query Parameter) In Blazor
Oct 27, 2020.
In this article, you will learn about Query string (or Query Parameter) in Blazor.
WebAPI Basics
Oct 21, 2020.
In this article, we are going to learn what is ASP.NET WebAPI and why we need to use webAPI and parameter binding in WebAPI.
Make Parameters Optional In C#
Aug 27, 2020.
In this article, you will learn about different ways to make parameters optional in C#.
How To Use Parameters In Power BI
Aug 12, 2020.
In this article, you will learn how to Use Parameters in Power BI.
Parameters In Power BI Desktop
Aug 06, 2020.
In this article, you will learn about Parameters in Power BI Desktop.
Ref Vs. Out Parameter In C#
Jul 06, 2020.
These 2 widely-used keywords have advantages when it comes to returning multiple values.
Filter Records By Passing Multiple Parameters In Stored Procedure Using MVC
May 27, 2020.
Here we can filter records using by passing various input parameters to stored procedure and Dynamic Sql in MVC.
ASP.NET MVC - How To Use AJAX With JSON Parameters
May 18, 2020.
This article is about the integration of Ajax call by passing JSON format input query parameters using ASP.NET MVC5 platform
ASP.NET MVC - How to Use Ajax with Parameters
Mar 18, 2020.
This article is about integration of Ajax call by passing multiple input query parameters with ASP.NET MVC5 platform.
ASP.NET MVC - How To Use Ajax without Passing Parameters
Mar 13, 2020.
This article is about integration of Ajax call without passing any parameters with ASP.NET MVC5 platform.
How to Make a Parameter Optional in MVC
Mar 07, 2020.
In this article, I'm going to show you how to make parameters optional in MVC.
Add Custom Parameters In Swagger Using ASP.NET Core 3.1
Feb 17, 2020.
This article showed you a sample of how to add custom request parameters in Swagger using ASP.NET Core 3.1 and Swashbuckle.AspNetCore 5.0.0
Forwarding Refs In React
Feb 12, 2020.
In this article, you will learn about Forwarding Refs in React.
Different Ways to Create Refs in React
Feb 05, 2020.
In this article, you will learn about different ways to create Refs in React.
SQL Bulk Insert And Update Records Using Stored Procedures
Jan 20, 2020.
Today we will learn how to insert and update multiple records using single stored procedure and user defined table type
Out Parameter in c# 7.0
Jan 17, 2020.
Out Parameter in c# 7.0
Method Parameter And Reference Changes - C# 6 To C# 9 New Features - Day Two
Jan 16, 2020.
This article covers the changes done for method parameters and method references and focuses on “in”, “out”, “ref” and “readonly” keywords related changes in the newer version of C#.
Using Table Type Parameter In .NET Core
Dec 30, 2019.
In many cases, we need to send a list of objects to the stored procedure to save or update the list of data in the database, which helps in increasing the performance of the application. Here I'll explain how to send a list of data to stored procedure from WEB API (Entity Framework) .NET CORE.
PowerQuery - Dynamically Pass Database Name as Parameter to fetch the Records from Different Datasets using Managed Parameters and Functions
Nov 05, 2019.
In this article, we will talk about how we can get the database name using Stored Procedure based on the Customer ID and pass that Database Name to another stored procedure as a Parameter to load the records from that particular dataset using Functions.
Memo And Refs In React
Jul 31, 2019.
This article talks about the concept of Memo and Refs in React.
SPFx - Creating Custom Dialog Boxes Without A Javascript Framework
Jul 24, 2019.
Learn how to implement custom dialog boxes in SharePoint using SPFx. This tutorial explores extending the Base Dialog class without a JavaScript framework, leveraging npm packages for popup displays.
How To Pass Parameters To SPFx Extension By Creating A WebPart UI Interface
May 29, 2019.
In this article, we will learn how to pass dynamic parameters to SPFx extensions by taking user input and enabling extension via custom action.
How Can You Use Optional Parameters In C#
Apr 10, 2019.
C# Optional parameters allows us to define methods with optional arguments that are not required to pass by the caller. Learn how to pass optional parameters in C#.
Send Method As Parameter Java Vs C#
Mar 26, 2019.
In C# you have delegates, which is pretty straightforward as far as sending a method as parameter in C#. This has not been the case with Java.
ASP.NET Web API Query String Parameter
Jan 28, 2019.
In this article, we are going to learn query string parameters in ASP.NET Web API.
Python Print Function
Dec 21, 2018.
In this article, we will learn how a Python Print Function works. The syntax of the Python print function is given in here and you can learn about the parameters of Python print function as well.
Overview Of Optional Route Parameters In Angular
Nov 25, 2018.
In this article, we are going to learn the optional route parameters in Angular. Sometimes it may be the requirements that we want the component view to be rendered on the basis of some values coming from the route parameter or we just want to render the component with some additional functionality with the help of some values coming from parameters.
How To Return Different Types Of Objects In C# Based On A Input Parameter Type
Nov 24, 2018.
Requirements come like this that you have multiple roles in an organization. Now based on the role you want to return different profiles of same data like for some user you want to show Full data and for some you want to return the medium amount of same data and for some user you want to show only minimal attributes of same data.
Overview Of Route Parameters In Angular
Nov 22, 2018.
In this article, we are going to send data from one template to another through route parameters.
Overview Of Parameter Sniffing
Sep 27, 2018.
Hello Learners. Hope you all are doing great. I am writing this article to get an understanding of parameter sniffing. What it is all about and how it is related to performance sometimes.
Working With New Enhanced Feature Of ‘Ref’ Keyword In C# 7.0
Sep 20, 2018.
Here, in this article, I will try to explore the new enhanced feature of ‘ref’ keyword.
New C# 7 Features - Ref Returns And Out Variables - Part Three
Jul 30, 2018.
This blog explains the improvement for ref returns and out variable in C# 7.0.
Routing In Blazor
May 18, 2018.
A Route is a URL pattern and Routing is a pattern matching process that monitors the requests and determines what to do with each request.
Ref And Out KeyWords - Two Separated Twins
Mar 26, 2018.
In this article, I am going to explain the concepts of some useful keywords like Ref & Out parameters. These keywords are used along with the data to be passed to a function as parameter. Below I will explain a brief explanation about each of these keywords with an example.
Hide And Group Columns In SSRS Using A Parameter
Mar 16, 2018.
Learn how to enhance reports without creating multiple versions. Utilize SSRS features like parameters, expressions, and visibility settings to dynamically adjust data presentation, catering to user requests while maintaining report integrity.
About ref-parameter
NA
OUR TRAINING