Want to become a Vibe Coder? Join Vibe Coding Training here
x
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]
Shiv Sharma(6)
Manoj Kalla(5)
Sardar Mudassar Ali Khan (4)
Gajendra Jangid(4)
Sanwar Ranwa(4)
Sanjay Kumar(3)
Velladurai (3)
Jithu Thomas(3)
Jitendra Mesavaniya(3)
Emanuel Martins(2)
Vinodh Kumar(2)
Allen Oneill(2)
Manikandan Murugesan(2)
Jejji Arora(2)
Abdul Basith(2)
Khoday Akilesh(2)
Ashutosh Singh(2)
Kesavan V(1)
Ashish Bhatnagar(1)
Lakshan Sulochana Fernando (1)
Shafaet Hossain(1)
Vinoth Xavier(1)
Sangeetha S(1)
Mayooran Navamany(1)
Dashrath Hapani(1)
Jay Krishna Reddy (1)
Bhuvanesh Mohankumar(1)
George (1)
Kirtesh Shah(1)
Jalpa Dhola(1)
Rama Dabburi(1)
Devesh Omar(1)
Rasul Huseynov(1)
Swesh S(1)
Jignesh Kumar(1)
Nikunj Satasiya(1)
Keyur Pandya(1)
Aman Gupta(1)
Chetan Sanghani(1)
Rikam Palkar(1)
Mariusz Postol(1)
Vijay Yadav(1)
Abhishek Dhoriya(1)
Dharmeshwaran S(1)
Vaishali Vishwakarma(1)
Jobin S(1)
Sarthak Varshney(1)
Arun Ramaswamy(1)
Lakshmi V(1)
Nishi Kumari(1)
Alkesh Bijarniya(1)
Sandip Jadhav(1)
Pushpa V(1)
Chethan N(1)
Shanuka Maheshwaran(1)
Manikandan M(1)
Tuhin Paul(1)
Kaveendra Dhilhan(1)
Tural Suleymani(1)
Anandu G Nath(1)
Abhishek Tiwari(1)
Ishika Tiwari(1)
Abiola David(1)
Simran Verma(1)
Vishal Yelve(1)
Tahir Ansari(1)
Resources
No resource found
Limitations and Workarounds in Microsoft Purview Endpoint DLP
Jun 22, 2025.
Explore the key limitations of Microsoft Purview Endpoint DLP and discover practical workarounds to improve data protection, ensure compliance, and overcome common deployment challenges.
Building Objects in JavaScript
Jun 18, 2025.
JavaScript is an object-based language, which does not Completely support object oriented programming concepts. It provides a mechanism by which user-defined Objects can be created.
Understanding the Purpose of Enforcing LDAP Channel Binding
Apr 28, 2025.
Understand the gaps in LDAP signing, the role of Channel Binding Tokens (CBTs), enforcement options, auditing, and best practices to secure your LDAP connections.
How to Convert a List of Objects to a DataTable in C#
Apr 23, 2025.
In real-world C# applications, especially when working with data layers or exporting data (e.g., to Excel, reports, or grids), you may often need to convert a generic list of objects (List<T>) to a DataTable.This article shows you how to do that in a clean, reusable way using reflection.
Introduction to IIS Site and Application Pool – Series II
Apr 16, 2025.
Learn the basics of Internet Information Services (IIS) by understanding two core components: Sites and Application Pools.
Asynchronously Grouping Totals in MAUI [GamesCatalog] - Part 13
Apr 14, 2025.
Learn how to implement dynamic game status cards in MAUI using MVVM, data binding, and async methods. This covers creating UI components, grouping data by game status, and displaying totals on the main screen.
Working with Dataset Data in ASP.NET GridView
Mar 08, 2025.
This article covers data binding, displaying records, sorting, paging, and editing in GridView. Understand how to fetch data from a database, manipulate it using DataTables, and present it efficiently using ASP.NET GridView for a seamless user experience.
Creating a ListView MAUI MVVM .NET 9 [GamesCatalog] - Part 2
Feb 14, 2025.
Create a MAUI .NET 9 project that displays game information using a ListView. Bind a ViewModel with an ObservableCollection of UIIGDBGame items, and design a clean UI using XAML, Grid, and custom styling for a game catalog.
Understanding the Override Function in C#
Jan 23, 2025.
The override keyword in C# allows a derived class to modify or extend a method defined in a base class. It supports polymorphism, inheritance, and encapsulation, enabling flexible and reusable code with dynamic method binding at runtime.
Implementing Azure Private Link for Microsoft Fabric
Jan 09, 2025.
Azure Private Link integrates with Microsoft Fabric to secure data by enabling private access within Azure’s network. It ensures compliance, prevents data leaks, supports services like Power BI, and boosts performance for organizations.
Reducing AI Model Latency Using Azure Machine Learning Endpoints
Jan 01, 2025.
Learn how to reduce AI model latency using Azure Machine Learning Endpoints for faster inference and improved performance. Discover techniques like model optimization, scalable deployment, and real-time processing to ensure low-latency AI applications in the cloud or at the edge.
Custom middleware in .Net core
Dec 24, 2024.
Create a custom middleware in .NET Core to handle unhandled exceptions, and log errors, and return a user-friendly JSON response. Integrate it into the pipeline and test with endpoints to ensure robust error management.
Use Endpoints Explorer with .http Files in Visual Studio
Dec 23, 2024.
Say goodbye to Postman and Swagger with Endpoints Explorer in Visual Studio! Learn how to test and explore APIs using .http files, simplify your API workflow, and enhance your development experience.
Connecting Angular Frontend to MongoDB via Express Backend
Dec 08, 2024.
Learn to connect MongoDB, Express, and Angular for full-stack development. Build a REST API backend with Express and Mongoose, and create a dynamic Angular frontend for CRUD operations. Simplify data flow with seamless integration.
Angular Features (1) --- Data Binding: Data Transfer inside Component
Dec 07, 2024.
This article will discuss Data Binding in Angular
Introduction To Minimal API using ASP.NET Core 8
Nov 21, 2024.
Minimal API in .NET Core 6.0 simplifies the process of creating HTTP APIs by reducing code verbosity and dependencies. It is ideal for microservices, offering advantages like lightweight routing, improved performance, and accelerated development.
Use of ItemsControl in WPF C# for Flexible UI Design
Nov 19, 2024.
This guide explores data binding, templates, and customization techniques for crafting sophisticated layouts. Enhance your WPF skills and unlock the full potential of ItemsControl for efficient UI development.
Repository Pattern in .NET Core for Clean Data Access
Nov 15, 2024.
Learn how to separate business logic from data logic, enhance testability, and reduce code duplication. By following these best practices, you’ll achieve modular, scalable applications in .NET Core.
Testing API Endpoints Using C# and Swagger
Nov 14, 2024.
Learn how to test API endpoints effectively using C# and Swagger. This guide covers setting up Swagger for API documentation, configuring C# for testing endpoints, and automating tests to ensure reliable web services.
Beginner's Guide to CRUD Operations in .NET Core 8 Web API
Nov 12, 2024.
This guide walks you through creating a .NET Core 8 Web API for managing employee data with full CRUD operations. Using Entity Framework Core, you’ll define models, connect to a SQL database, create endpoints, and perform migrations.
Understanding TreeView in .NET Core
Nov 04, 2024.
The TreeView component in .NET Core is a powerful UI element that displays hierarchical data in a tree-like structure, allowing users to navigate through items easily.
Endpoint Explorer in Visual Studio 2022
Oct 28, 2024.
Endpoint Explorer in Visual Studio 2022 is a powerful tool for developers to easily test, debug, and manage API endpoints directly within the IDE. It streamlines API development by allowing quick setup and testing of REST API requests, enhancing productivity and making debugging smoother.
An Overview of the Implementation of ValidationRules in WPF C#
Oct 27, 2024.
In WPF, the ValidationRule class enables custom validation for user input in controls like TextBox. By extending the ValidationRule and overriding the Validate method, specific input criteria can be enforced.
Validation of Complex Objects in Multi-Lingual Environment Using DynamicVNET With ASP.NET Core
Oct 14, 2024.
DynamicVNET is a lightweight, rule-based validation library for .NET applications, designed to validate POCOs while adhering to the Single Responsibility Principle (SRP). It integrates seamlessly with ASP.NET Core, enabling flexible and dynamic validation for API requests with minimal configuration.
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.
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.
Integrating AngularJS with jQuery Select2 for Dropdown Changes
Sep 02, 2024.
Integrating AngularJS with jQuery Select2 enhances dropdown menus by combining AngularJS’s data binding with Select2’s advanced features. This setup involves initializing Select2 with AngularJS, handling dropdown changes, and synchronizing Angular models.
Advanced Dependency Injection in .NET Core
Aug 27, 2024.
This guide explores advanced Dependency Injection (DI) in .NET Core through an e-commerce application example. It covers custom service lifetimes, scopes, and managing complex dependency graphs, demonstrating how to build scalable, maintainable, and loosely coupled applications using DI techniques.
Sharing Data from Child to Parent in Angular 18
Aug 24, 2024.
In this walkthrough, you'll learn how to send data from a child component to a parent component in Angular using the @Output decorator and EventEmitter. You'll create a simple Angular project, define a child component to emit data and update the parent component to receive and display this data.
Share Data from Parent to Child Component in Angular 18
Aug 23, 2024.
Learn how to send data between Angular components using @Input and @Output decorators. This guide demonstrates how to transfer data from a parent to a child component in Angular. Create a project, set up components, and use Angular CLI and forms to bind and display data effectively.
Managed Private Endpoints in Microsoft Fabric
Aug 13, 2024.
Managed private endpoints in Microsoft Fabric enhance data security by enabling secure, private connections to data sources like Azure Storage and SQL databases, bypassing public internet exposure. They simplify network configurations, ensure data privacy, and require specific capacities and regional availability.
Tips to Learn Angular Quickly
Aug 08, 2024.
To learn Angular quickly, leverage your existing knowledge of HTML, CSS, and JavaScript. Focus on core Angular concepts like Components, Routing, Guards, Data Binding, Template Forms, and Services. Utilize Angular CLI for efficient project management and familiarize yourself with TypeScript for strong typing.
Implementing Cascading Drop-Down Lists in .NET Core
Aug 07, 2024.
Cascading drop-down lists are an essential feature in dynamic web applications where the choice in one dropdown dictates the contents of another. For example, selecting a country in one drop-down could filter the available states in another.
Creating a Host-Named Web Application in SharePoint
Aug 02, 2024.
To create a host-named web application, first configure a DNS entry with the desired host name. Log in to your Active Directory server to create an A Host record pointing to your web server. In SharePoint Central Administration, set up a new web application with the host name in the Host Header field.
Angular 18 Create QR Code using ng-qrcode
Jul 31, 2024.
Learn how to create QR codes in Angular using the ng-qrcode package. This guide covers setting up an Angular project, installing ng-qrcode, and implementing QR code generation with two-way data binding. You'll create a form to input data, which dynamically updates the QR code displayed.
How to Use JWSHMAC in ASP.NET Web Application
Jul 29, 2024.
Learn how to implement JWSHMAC in an ASP.NET web application to secure JSON data using HMAC. This guide covers installing the JWT NuGet package, creating a JWT helper class for token generation and validation, and configuring authentication middleware.
Dynamic Expansion Panel as a separate component.
Jul 21, 2024.
Create a dynamic expansion panel in Angular using Angular Material to display user personal and correspondence addresses. This involves defining components with TypeScript for logic, HTML for view, and CSS for styling.
Building RESTful APIs with ASP.NET Core
Jul 16, 2024.
In today's interconnected digital landscape, creating robust and efficient APIs is crucial for enabling seamless communication between applications. ASP.NET Core, the open-source framework from Microsoft, provides a powerful platform for developing RESTful APIs with ease.
Dynamic Rendering in Blazor Using Implicit and Explicit Expressions
Jul 11, 2024.
Blazor, known for its component-based architecture, integrates HTML and C# seamlessly for dynamic rendering. It offers implicit expressions for straightforward data binding, explicit expressions for complex logic, and code blocks for embedding C# directly in HTML.
Programming in Practice - GUI - XAML - Description of the User Interface
Jul 09, 2024.
This article concerns selected issues related to the representation of process information in graphical form to develop a comprehensive User Interface. It presents XAML Domain-Specific Language as a description of the user interface.
Basic Usage of ng-repeat in AngularJs
Jul 09, 2024.
Explore the fundamental concepts of AngularJS with a focus on ng-repeat directive usage. Learn how to efficiently iterate through data, apply filters, and handle basic data binding within AngularJS applications.
Understanding View Binding in Android
Jul 09, 2024.
View binding is a feature that makes it easier to write code that interacts with views. Once view binding is enabled in a module, it generates a binding class for each XML layout file present in that module. An instance of a binding class contains direct references to all views that have an ID in the corresponding layout.In most cases, view binding replaces findViewById
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.
Data Binding in Android Kotlin
Jul 05, 2024.
Data binding in Kotlin refers to the process of establishing a connection between the UI elements of an application and the underlying data model. This technique allows for seamless synchronization between the user interface and the data it displays or manipulates. Here’s how data binding works in Kotlin:
C# Method Designed to Make a POST Request to a Web API Endpoint
Jul 04, 2024.
This guide covers API integration in C#, detailing serialization, encryption, HTTP requests, and error handling. Learn how to set up an API integration method, handle responses, and follow best practices for security, error handling, and asynchronous operations to build robust and secure applications.
Microsoft Defender for Endpoint (MDE), Common Actions
Jul 04, 2024.
Explore essential actions within Microsoft Defender for Endpoint (MDE), empowering comprehensive endpoint security. Discover how MDE safeguards against threats, facilitates incident response, and enhances cybersecurity posture.
Understanding Data Binding in Angular
Jun 28, 2024.
Data Binding in Angular" explores the foundational concepts and practical applications of binding data between components and views in Angular applications. It covers two-way and one-way binding mechanisms, including interpolation and property binding.
Deploying Serverless API Endpoints in Azure Machine Learning
Jun 28, 2024.
Deploying machine learning models as serverless API endpoints in Azure Machine Learning enables scalable, cost-effective, and low-latency real-time inference without the need to manage the underlying infrastructure.
Key Features and Use Cases of Angular
Jun 27, 2024.
Angular is a robust framework for building client-side applications with HTML, CSS, and TypeScript, offering features like component-based architecture, two-way data binding, and dependency injection.
Service Endpoints Vs Private Endpoints in Azure
Jun 25, 2024.
In Azure, Service Endpoints and Private Endpoints serve distinct roles in networking and security. Service Endpoints extend Azure services like Azure Storage or Azure SQL to your virtual network, enabling secure access without exposure to the public internet.
Non-3DS Payment Gateway Integration with First Atlantic Commerce
Jun 23, 2024.
First Atlantic Commerce (FAC) is a leading online payment gateway based in Bermuda, offering secure, multi-currency payment processing and fraud management solutions. Established in 1998, FAC provides PCI-DSS-compliant services for Internet merchants and acquiring banks in the Caribbean and Central America.
OnPush Change Detection Strategy: Optimizing Angular Performance
Jun 21, 2024.
Angular's OnPush change detection strategy optimizes performance by reducing unnecessary checks, only updating when input properties change or events occur. This approach, contrasting with the default strategy, enhances efficiency and predictability, crucial for complex applications.
Calculate and Display Total Amount Based on Checkbox States
Jun 21, 2024.
In web applications, event binding detects changes in checkboxes named advamount and Rentalamount, enabling dynamic updates based on user interaction. This involves managing the checkbox states to track which financial components are selected.
Work With iframes in Angular
Jun 12, 2024.
Learn how to effectively embed and interact with iframes in your Angular application. This guide covers setting up iframes in Angular components, dynamically changing iframe URLs, ensuring security with DomSanitizer, styling iframes, and communicating with iframes using the postMessage API.
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.
What is VMware Workspace ONE?
May 30, 2024.
VMware Workspace ONE is a comprehensive digital workspace platform that integrates Unified Endpoint Management (UEM), identity management, and application management.
Migrate to Azure Monitor Agent from Legacy Log Analytics Agent
May 09, 2024.
The Log Analytics Agent (OMA/MMA) will be decommissioned in August 31st of 2024. Users and Clients have to migrate to Azure Monitor Agent (AMA) before that. This article discusses on the steps to be followed to migrate from OMA/MMA to AMA.
Microsoft Defender for Endpoint (MDE), Common Actions
Apr 23, 2024.
This article provides concise instructions for managing antivirus software on Windows and Linux Azure Virtual Machines using Microsoft Defender for Cloud. It covers tasks such as checking protection status, viewing incident history, running scans, configuring settings, updating definitions, and troubleshooting performance.
Form Controls and Create Basic Form in Blazor Component
Apr 18, 2024.
Learn to build interactive forms in Blazor components using form controls like input fields, dropdowns, and buttons. Explore data binding techniques to connect form elements to your component's data model.
What is Data Binding and Types of Data Binding in Angular?
Apr 08, 2024.
Data binding is a core concept in Angular that allows developers to establish a connection between the application's data. In this article, we'll delve deep into the various types of data binding mechanisms in Angular, providing detailed examples to help beginners understand and leverage these powerful features effectively.
Text Interpolation and types of Text Interpolation in Angular
Apr 07, 2024.
Angular, a leading JavaScript framework, offers developers a plethora of features to create dynamic and interactive web applications. In this article, we will delve into the various types of text interpolation available in Angular, accompanied by examples to illustrate their usage.
Arrow Functions in React: Concise Syntax & Lexical Binding
Apr 03, 2024.
Arrow functions, a staple of modern JavaScript introduced in ES6, offer concise syntax and lexical binding, making them ideal for React. They streamline event handlers, callbacks, and functional components.
Dynamic Default Value from SharePoint List in Power Apps Toggle Control
Mar 29, 2024.
In this article, we will learn how to enhance user experience in Power Apps by integrating dynamic default values from SharePoint lists into toggle controls.
Explain about Vue.js Template
Mar 28, 2024.
Vue.js templates offer a declarative approach to building user interfaces, extending HTML with Vue-specific directives for data binding, conditional rendering, looping, event handling, and creating reusable components.
Power Apps: Bind Default Values from SharePoint Using Slider Control
Mar 28, 2024.
In this article, we will learn how to enhance user experience in Power Apps by utilizing the Slider control. This tutorial guides you through binding default values seamlessly from SharePoint, streamlining data integration, and enhancing interactive elements for a more intuitive user interface.
Power Apps: Combo Box Control & Dynamic SharePoint Data Binding
Mar 28, 2024.
Learn to harness the power of Combo box Control in Power Apps to dynamically bind data from SharePoint. Elevate your app development skills with seamless integration and efficient data management, enhancing user experience and productivity.
Get List Control Dynamic value from SharePoint List in Power Apps
Mar 27, 2024.
The List Box control in Power Apps coupled with SharePoint integration enhances data visualization and interactivity. Customize appearance and behavior, bind to SharePoint lists, implement filtering/sorting. However, limitations include data connectivity dependency and performance issues with large datasets.
Dropdown Options Dynamically from SharePoint List in Power Apps
Mar 23, 2024.
How to bind dropdown option dynamically from SharePoint List in Power Apps. Power Apps enables custom app creation without extensive coding. Learn to dynamically populate dropdowns from SharePoint lists for efficient, consistent, and scalable applications with this step-by-step guide.
Data Binding in Angular
Mar 23, 2024.
Data binding serves as the communication bridge between the template (representing the view) and the component (housing the application's logic and data).
What is Dynamic CSS Binding in Vue.js
Mar 21, 2024.
Vue.js allows dynamic CSS binding using directives like v-bind:class or :class for class binding, and v-bind:style or :style for inline style binding. Code examples demonstrate these techniques effectively.
Mastering the Display Form Control in Power Apps
Mar 20, 2024.
Mastering the Display Form Control in Power Apps enables efficient data presentation and user interaction. Learn customization, validation, and integration for optimal user experience and streamlined data management.
Establishing Communication Between Executable Files Using TCP/IP
Mar 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.
How to Group API Endpoints in FastAPI: Diverse Approaches
Mar 07, 2024.
This article explores two methods for grouping API endpoints with Fast API. Initial method employs an API Router to segregate user and item endpoints into distinct routers. The second method utilizes Fast Api's tagging feature to classify endpoints according to their functions.
What is Reactive Interface in Vue.js
Feb 29, 2024.
Vue.js boasts a powerful reactive interface, automating UI updates in response to underlying data changes. Through data binding, reactivity, computed properties, and watchers, Vue ensures efficient and automatic UI synchronization.
Dynamic Model Binding in ASP.NET Core Web API
Feb 22, 2024.
Dynamic model binding in ASP.NET Core Web API allows flexible data binding for HTTP requests with varying structures. Follow these steps to implement dynamic model binding in your ASP.NET Core project.
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.
How Do You Implement Two-Way Binding in Vue.js
Feb 21, 2024.
Vue.js simplifies two-way data binding using the v-model directive. This feature effortlessly links form input elements and custom components, ensuring changes in one are instantly reflected in the other.
Polymorphism Concept in Object-Oriented Programming
Feb 12, 2024.
What do you mean by polymorphism? Polymorphism is explained with C# examples, Polymorphism, a concept extending beyond programming, is illustrated in everyday scenarios. Electrical outlets serve as an analogy, supporting diverse devices—an example of polymorphism manifesting in real life.
PowerApps Dropdown / ComboBox with Image
Feb 09, 2024.
Create visually enriched PowerApps Dropdown/ComboBox with images. Enhance the user experience by incorporating thumbnails or icons alongside selectable options, leveraging data binding and custom templates for seamless integration.
call(), apply(), and bind() in JavaScript
Feb 09, 2024.
The article describes the call(), apply(), and bind() commonly used in JavaScript. In JavaScript, call(), apply(), and bind() methods enable manipulation of function invocation by setting the context and passing arguments. Call() and apply() allow immediate invocation, while bind() creates a callable function for later use.
Apache Kafka with Dapr Bindings in .NET
Feb 07, 2024.
This content provides an in-depth overview of integrating Apache Kafka with Dapr Bindings for building distributed event-driven applications. It explains the key concepts of Apache Kafka, Dapr, and Dapr Bindings, along with step-by-step
Validating an HTTP Endpoint to Receive Events from Azure Event Grid
Feb 07, 2024.
This article elucidates the process of validating an HTTP endpoint for receiving events from Azure Event Grid. By creating an Azure Function App with an HTTP-triggered function, you can handle Microsoft.
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.
How to Implement Azure Global DNS with Traffic Manager Profile?
Feb 05, 2024.
Implement Azure Traffic Manager for efficient global DNS load balancing across Azure web apps and VMs. Achieve optimal availability and responsiveness, especially for applications spanning multiple regions or data centers.
Implementation of Collection View in .NET MAUI
Feb 02, 2024.
In this article, I will explain MAUI Collection View implementation using Visual Studio 2022. .NET MAUI Collection View is a view for presenting lists of data using different layout specifications. Collection View should be used for presenting lists of data that require scrolling or selection.
Dynamic Styling in Vue.js with v-bind Directive
Jan 22, 2024.
Vue.js, a progressive JavaScript framework, empowers developers to build interactive and dynamic user interfaces effortlessly. One of its key features is the v-bind directive, a powerful tool that enables the dynamic binding of HTML attributes to data in the Vue instance.
Device Endpoint Protection settings configuration in Microsoft Intune
Jan 17, 2024.
Steps to create configuration profile of Endpoint protection in Microsoft Intune.
Understanding Concurrency in C#
Jan 03, 2024.
This article is an introduction to Concurrency in C# that is going to explain the concept of CPU-bound and I/O-bound operations to understand the world of Concurrency better
How To Create a WCF Service
Dec 26, 2023.
How can I create a WCF service that manages employee details while interacting with an SQL database, including the necessary SQL table script for employee information storage?
15 Features Every SwiftUI Developer Should Know
Nov 16, 2023.
Discover the power of SwiftUI with our in-depth article that covers 15 essential features every Swift developer should master. From the elegance of declarative syntax to the real-time magic of live preview in Xcode, this guide takes you through the fundamentals and advanced capabilities of SwiftUI.
Identity API Endpoints based Authentication and Authorization in .NET 8
Nov 15, 2023.
The second step in adding token-based authentication to ASP.NET Core Identity is to introduce the Identity API endpoints. Basically, this is an API version of the actions that you can perform with ASP.NET Core Identity through the classic web UI. Once you enable the Identity API endpoints, you will get endpoints like /register, /login, /forgotPassword, confirmEmail, etc.
Performing Bound and Unbound Actions in Power Automate
Oct 18, 2023.
In Power Automate, you can execute bound or unbound actions using the Dataverse actions from the Microsoft Dataverse connector. There are two types of Dataverse actions available for use in flows: bound actions and unbound actions.
Dynamically Bind HTML Template to JSON Data Without using Loop in SQL
Oct 17, 2023.
How we can dynamically bind html template to json data without using looping sql server
How to Create Table & Insert Records in Microsoft Fabric Data Warehouse SQL Endpoint
Oct 16, 2023.
This article covers how to create table and insert records in the Microsoft Fabric Data Warehouse SQL Endpoint
Model Binding in ASP.NET Core
Oct 11, 2023.
Model Binding in ASP.NET Core for Simplifying Data Interaction
Model Binding In ASP.NET Core
Sep 27, 2023.
Model Binding in ASP.NET Core is a fundamental and powerful feature that simplifies the process of mapping HTTP request data to C# model objects. It plays a crucial role in the development of web applications by automating the extraction of data from incoming HTTP requests and populating C# objects, which can then be used to process and respond to those requests.
Simplify API Data Handling with ASP.NET Core Model Binding
Sep 21, 2023.
In this article, we explore the versatile world of model binding in ASP.NET Core REST APIs. Model binding is a critical feature that simplifies data handling by automatically mapping HTTP request data to .NET objects. We'll delve into real-world use cases, including binding query parameters, route data, request bodies, and headers. Discover how model binding streamlines API development, improves code readability, and ensures data consistency. Whether you're a beginner or an experienced ASP.NET Core developer, understanding model binding is crucial for building efficient and maintainable RESTful APIs.
Advanced Sorting and Searching in ASP.NET Core Web API
Sep 15, 2023.
Sorting and searching are essential functionalities in many ASP.NET Core Web API applications. To implement advanced sorting and searching in your API, you can follow these steps:
Implement GraphQL endpoints using libraries like Hot Chocolate with ASP.NET Core
Sep 12, 2023.
Creating GraphQL endpoints in an ASP.NET Core web API using Hot Chocolate involves several steps. In this example, we'll create a simple GraphQL API that manages a list of books. We'll use Hot Chocolate to define the schema, query, and mutation operations. Before starting, make sure you have ASP.NET Core installed and a basic understanding of C# and web API development. You can create a new ASP.NET Core project using Visual Studio or the .NET CLI.
Securing ASP.NET Core Web API with JWT Authentication and Role-Based Authorization
Sep 09, 2023.
Securing APIs in an ASP.NET Core Web API involves implementing authentication and authorization mechanisms to protect your resources and ensure that only authorized users can access them. In this example, I'll provide a step-by-step guide on how to secure an ASP.NET Core Web API using JWT (JSON Web Tokens) authentication and role-based authorization.