Resources  
  • Data Binding in AngularMar 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).
  • Exploring .NET 6's MinBy() and MaxBy() Extension MethodsMar 22, 2024. In this article, I will demonstrate the exciting new additions to LINQ extension methods introduced in.NET 6: MinBy() and MaxBy(). Let's explore how these powerful methods simplify code, providing efficient solutions for selecting extreme values within a generic sequence.
  • Learn about Asynchronous Events in C#Mar 20, 2024. Explore asynchronous event invocation in C#, addressing threading challenges with event handlers. Learn about the synchronous nature of events, concurrency issues, and solutions using TPL and TAP. Ideal for intermediate C# programmers seeking to optimize event-driven applications.
  • Leveraging Compiled Queries for Enhanced Performance in LINQMar 09, 2024. Compiled queries in LINQ allow developers to pre-compile LINQ queries into executable delegates, reducing the overhead of query compilation and optimization. By caching the compiled query execution plan, compiled queries improve the performance of frequently executed or complex queries in C# applications.
  • Misconceptions About the Four LINQ methodsMar 09, 2024. Misconceptions about the four LINQ methods. Single(), SingleOrDefault(), First(), and FirstOrDefault(). This article addresses misconceptions surrounding four LINQ methods—Single(), SingleOrDefault(), First(), and FirstOrDefault(). Clarifying differences and potential pitfalls helps prevent null references and invalid operator exceptions in code.
  • Creating Funnels Using Custom Events in Application InsightsMar 07, 2024. Learn to add custom events to a simple .NET application's telemetry and then use these events to create funnels that identify users who complete a specific sequence of steps in your application.
  • How to Detect Event on Clicks Outside in Vue.jsMar 07, 2024. Detecting clicks outside an element in Vue.js is crucial for scenarios like closing dropdown menus or modals. This guide provides a step-by-step process, ensuring efficient handling of such events.
  • Power of Typescript Scroll EventsMar 06, 2024. The onscroll event in JavaScript is a powerful tool that gets triggered when a scrollbar is used for an element. This event is particularly useful for creating dynamic and interactive web experiences, allowing developers to respond to user interactions with scrolling.
  • Master Scroll Events: ECMAScript 8 (ES8) and TypeScriptMar 05, 2024. We'll explore how to adapt and extend the scroll event examples using ECMAScript 8 (ES8) features and the TypeScript language. These advanced techniques provide developers with additional tools and benefits for handling scroll events in modern web development.
  • Disable Right Click Directive in Vue.jsMar 05, 2024. In Vue.js, disable right-click functionality by creating a custom directive. Bind an event listener to contextmenu, preventing its default behavior. Easily implement this directive for specific elements in your templates.
  • What is New in .NET 9Mar 04, 2024. .NET 9, succeeding .NET 8, places particular emphasis on cloud-native applications and enhancing performance. It will receive standard-term support (STS) for 18 months.
  • Vue.js Custom Events: Enhance Parent-Child Communication with $emit()Mar 01, 2024. Vue.js, with its powerful reactivity system, allows seamless communication between parent and child components. While props enable data flow from parent to child, the $emit() method serves as a bridge for sending information from the child back to the parent.In this comprehensive guide, we will explore the intricacies of Vue.js custom events, focusing on the application of the $emit() method to create dynamic and interactive user interfaces.
  • How to Communicate from Child to Parent Using Events in Vue.jsFeb 27, 2024. In Vue.js, child components can communicate with parent components through custom events. Child components emit events using $emit, and parent components listen and respond accordingly, enabling dynamic interaction.
  • Java Applet Design: File, Edit, and Search Options with ActionPerformed FunctionsFeb 26, 2024. Create an Applet with the menu bar and add the following menus: File, Edit and Search. Add default menu items to the respective menus. In the File menu, add the following items: New, Open, Save and Close.
  • .NET Delegates in Event-Based Asynchronous Pattern for SeniorsFeb 26, 2024. This article dives into the practical learning of delegates, emphasizing real-world examples. It explores the Event-Based Asynchronous Pattern (EAP) in C# and its advantages, using delegates to implement asynchronous operations effectively.
  • How Do I Implement a 'Mouse Double Click' for a ListBoxFeb 26, 2024. Implementing a "mouse double click" event for a ListBox typically involves subscribing to the ListBox's MouseDoubleClick event and specifying the action you want to perform when the event occurs.
  • Why we should learn C#?Feb 26, 2024. This article explores the reasons behind choosing C# over other languages, delving into its evolution, key features like object orientation, lambda expressions, LINQ, generics, and its adaptability for modern development needs.
  • 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.
  • ASP.NET Core with Hosted Service & Lifecycle EventsFeb 20, 2024. ASP.NET Core with Hosted Service & Lifecycle Events explores the integration of background tasks in ASP.NET Core applications. Learn how to implement long-running processes efficiently, manage service lifetimes, and leverage lifecycle events for graceful initialization and shutdown.
  • What Are the Directive Hook Arguments in Vue.jsFeb 13, 2024. In this article, we will understand the lifecycle of Vue.js directives through their hook arguments. Explore how these parameters facilitate interactions and manipulations within the directive's lifecycle, enhancing control and customization in Vue.js applications.
  • Understanding Azure Event GridFeb 12, 2024. Azure Event Grid is a fully managed event routing service that simplifies the development of event-driven applications. In this article, we'll explore the key concepts, features, and use cases of Azure Event Grid, shedding light on its role in building modern, scalable, and responsive applications.
  • What are Synthetic Events in React?Feb 08, 2024. Howmany character only this content-This content highlights the significance of synthetic events in React, which are wrappers around native browser events providing a consistent interface across different browsers. It emphasizes their advantages, including cross-browser consistency, performance optimizations, and additional features.
  • Display an Application Notification in Dynamics 365 Using JavaScriptFeb 07, 2024. Unlock Dynamics 365's in-app notifications with JavaScript. Activate via the Power Apps portal, create a web resource with code, and trigger on contact name change. Stay informed effortlessly.
  • Validating an HTTP Endpoint to Receive Events from Azure Event GridFeb 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.
  • Vue.js Event Handling with v-on DirectiveFeb 07, 2024. Vue.js offers a powerful event handling mechanism through the v-on directive, enabling developers to respond to user actions such as clicks, inputs, and mouse movements dynamically.
  • What Are Event Modifiers in Vue.jsFeb 07, 2024. Event handling in Vue.js becomes even more powerful with the use of event modifiers. These modifiers enhance your ability to precisely control how events trigger the execution of methods, making your code more efficient and readable.
  • Apache Kafka with Dapr Bindings in .NETFeb 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
  • Integration Guide: Effortless Microsoft Graph API Access SSOFeb 06, 2024. Discover the Power of Integration: Dive into our comprehensive guide on accessing Microsoft Graph API in C#! Uncover step-by-step instructions, best practices, and practical examples to seamlessly retrieve Events, User Data, and more. The rich functionality of Microsoft Graph API and elevate your development skills to new heights.
  • Explain about Mouse Events in JavaScriptFeb 06, 2024. Unlock the potential of mouse events in JavaScript for dynamic web interactions. From simple clicks to intricate movements, utilize events like click, dblclick, mouse down, mouse up, mouse move, mouseover, mouse out, mouse enter, mouse leave, and context menu.
  • Integration Guide for Effortless Microsoft Graph API AccessFeb 05, 2024. Discover the Power of Integration: Dive into our comprehensive guide on accessing Microsoft Graph API in C#! Uncover step-by-step instructions, best practices, and practical examples to seamlessly retrieve Events, User Data, and more. Empower your applications with the rich functionality of Microsoft Graph API and elevate your development skills to new heights.
  • Custom Events in C# for Enhanced Communication and FlexibilityJan 31, 2024. In C#, you can create custom events to provide a way for classes to communicate and react to certain actions or state changes.
  • Understanding Event Sourcing Pattern in .NETJan 29, 2024. Event Sourcing, a potent architectural pattern in .NET, captures state changes through events, promoting auditability, time travel, and scalability. Learn its implementation and best practices for resilient applications.
  • What is Event Handling in Vue.js?Jan 23, 2024. Vue.js empowers web developers to create dynamic and responsive applications through efficient event handling. In this comprehensive guide, we will delve into the intricacies of Vue events, exploring the v-on directive, Vue methods, and event modifiers.
  • Action and Func Delegates in C#Jan 02, 2024. Unlock the potential of Action and Func delegates in C# programming. Dive into the world of expressive and readable code, utilizing these powerful tools for method-passing, event handling, and more. Happy coding!
  • Azure Functions in ASP.NET Core Web APIJan 01, 2024. Azure Functions, a component of Microsoft's serverless computing offerings in Azure, enable developers to create and deploy small, event-driven code without managing infrastructure. These functions, supporting languages like C# and JavaScript, automatically scale and integrate with Azure services, streamlining the development of serverless applications and microservices.
  • Event Driven Architecture in MicroservicesDec 24, 2023. In this article, you will learn about event streaming in microservices. Event streaming in microservices is a powerful approach to communication and data processing based on a continuous flow of events. Instead of relying on traditional request-response mechanisms, services publish and subscribe to events, enabling loose coupling and real-time data processing.
  • How to Detect Event on Clicks Outside in Angular?Dec 11, 2023. Learn to detect click events outside a component in Angular. Follow step-by-step instructions covering prerequisites, project setup, Bootstrap integration, and directive implementation.
  • Sorting Arrays in C#Nov 24, 2023. This article guides us through sorting arrays in C# using the Array.Sort() method and LINQ queries. It covers both ascending and descending orders, providing code snippets for clarity.
  • Difference Between Concurrency and Parallelism in C#Nov 09, 2023. The article you provided gives a comprehensive overview of the concepts of concurrency and parallelism and their relevance in C# programming. It highlights the distinctions between the two concepts and provides clear examples and use cases for each. The discussion of best practices and considerations for managing concurrency and parallelism effectively is a valuable addition, as it helps developers avoid common pitfalls and make informed decisions when implementing these concepts in their applications.
  • Event Trigger Data Sync from SQL Server to Synapse via Azure Data Factory / Synapse PipelineOct 23, 2023. Event Trigger Data Sync from SQL Server to Synapse via Azure Data Factory / Synapse Pipeline
  • Get File details triggering the Azure Data Factory Pipeline / Synapse via Storage Event TriggerOct 05, 2023. Get File details triggering the Azure Data Factory Pipeline / Synapse via Storage Event Trigger
  • Understanding LINQ in C#: Query Syntax and Method SyntaxOct 03, 2023. This article is an informative and in-depth exploration of LINQ (Language Integrated Query) within the context of C#, a widely used programming language in the software development industry. The guide delves into both the query syntax and method syntax aspects of LINQ, providing readers with a thorough understanding of how to effectively use LINQ to query and manipulate data in C# applications.
  • Software Architecture TypesSep 26, 2023. Software architecture is the foundation of any software system, determining its structure, component interactions, and trade-offs. It significantly influences application quality, performance, scalability, and maintainability. This comprehensive guide delves into various software architecture types, offering insights into their strengths and weaknesses and guiding you on when to deploy them.
  • Event Trigger Power BI Entities Refresh via Azure SQL DatabaseSep 23, 2023. Event Trigger Power BI Entities Refresh via Azure SQL Database
  • Differences Between CQRS, MediatR, and CRUDSep 21, 2023. Explore the differences between CQRS, MediatR, and CRUD in this insightful article. Learn when to use each technique, their unique benefits, and find scenarios where they shine in .NET development.
  • Events in ReactSep 13, 2023. Events in React are used to create interactive applications that provide information to the user when an event occurs.
  • Scalable Event-Driven APIs with Azure Event Grid and Service Bus in ASP.NET CoreSep 13, 2023. In this comprehensive example, we covered all the essential components required for building an event-driven API using Azure Event Grid and Azure Service Bus. Keep in mind that the specific implementation details may vary depending on your use case and requirements. Additionally, Azure provides extensive documentation and tools to assist you in configuring and managing these services effectively.
  • Transforming Streaming Data into Insights with Power BISep 12, 2023. Power BI empowers real-time dashboard creation, integrating streaming data sources like Azure Event Hubs, Kafka, and PubNub. Optimize data ingestion, design, and interactivity for effective real-time insights.
  • Understanding LINQ in .NETSep 11, 2023. LINQ, or Language Integrated Query, is a powerful feature in the .NET framework that simplifies data querying and manipulation in C# and VB.NET applications. It provides a uniform and SQL-like syntax for querying data from various sources, including in-memory collections, databases, XML, and more.
  • ASP.NET (2) - ASP.NET ControlsSep 06, 2023. This series of articles on ASP.NET, originally from legacy OneNote notes, covers fundamental concepts. It offers valuable insights into current programming involving similar technologies like Angular and React.
  • ASP.NET (4-1) - Page Life Cycle: DebuggingSep 04, 2023. In summary, debugging in ASP.NET Page Life Cycle involves closely monitoring the execution flow, inspecting control states, and handling exceptions to identify and resolve issues efficiently. Understanding the life cycle events and their order helps developers pinpoint problems and ensure smooth web application operation.
  • View-Model in Vue.js Sep 01, 2023. Explore Vue.js's View-Model architecture, central to building efficient interfaces. Learn what it is, its importance, and how to use it for separation of concerns, reactivity, and organized code.
  • Cache Notifications and Event-driven Architecture with NCacheAug 27, 2023. In this article, let us discuss the importance of cache notifications in building an event driven application and how we can implement such a mechanism with an example in NCache
  • 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.
  • How To Display Alert Message In React.jsAug 24, 2023. How to Display Alert Message in React.js is a concise guide that walks you through the process of implementing alert messages or notifications in your React.js application. With this guide, you'll learn how to effectively communicate important information to users in a user-friendly manner.
  • Exploring the Diverse Flavors of LINQ with ExamplesAug 22, 2023. LINQ is a powerful feature in modern programming languages like C# that allows developers to perform queries on different types of data sources using a consistent syntax. With LINQ, you can query and manipulate data without worrying about the underlying data source, whether it's an in-memory collection, a database, or XML
  • Azure Stream Analytics Queries for Processing JSON DataAug 21, 2023. Exploring Azure Stream Analytics Queries for Processing JSON Data
  • Azure Event Hub: Empowering Seamless Real-Time Data StreamingAug 18, 2023. Azure Event Hub's transformative role in managing vast real-time data streams. Learn how it empowers efficient ingestion, processing, and distribution, enabling informed decisions and innovative applications.
  • Using the OrderBy and OrderByDescending Operator in LINQAug 08, 2023. Using the OrderBy and OrderByDescending Operator in LINQ: Sorting Collections
  • Learn About Programming Logic And LINQJul 25, 2023. In this article, you will learn about the basics of programming logic.
  • Unlocking the Power of Serverless Computing with Azure Functions Jul 16, 2023. Azure Functions are a serverless computing service provided by Microsoft Azure. They allow developers to write and deploy small units of code called functions that can be triggered by various events. With scalability, cost efficiency, and seamless integration with other Azure services, Azure Functions provide an efficient solution for building event-driven and microservices-based applications. They support multiple programming languages, offer easy deployment and management options, and provide built-in monitoring and debugging capabilities. Azure Functions are found within the Azure portal and can be created using Azure CLI or Visual Studio.
  • EF Core in .NET 7 APIJul 13, 2023. Using EF Core in .NET 7 API
  • C# LINQ With Select and SelectMany OperatorJul 10, 2023. C# LINQ with select and select many operator
  • Events and Event Delegation ModelJul 10, 2023. In any interactive environment, the program should be able to respond to actions performed by the user. These actions can be mouse click, key press or selection of a menu item.
  • LINQ MethodsJun 16, 2023. Linq Methods
  • Difference between IQueryable, IEnumerable, IList and ListJun 12, 2023. when to use what IQueryable, IEnumerable, IList and List
  • Configure AWS User Notifications for AWS ServicesMay 30, 2023. Amazon Web Service (AWS) recently announced a new service, ‘AWS User Notifications’, that enables you to centrally setup and view notifications from various AWS services like AWS EC2 instance state changes, AWS S3 object events, AWS CloudWatch alarms, AWS Support case updates, etc.
  • Unleashing the Power of a Generic Event Bus in Angular: Building a Powerful and Scalable ArchitectureMay 30, 2023. A generic event bus in Angular acts as a central communication hub that enables components to publish and subscribe to events. It promotes loose coupling and enhances the flexibility and scalability of large-scale applications. By leveraging the event bus, developers can establish efficient communication between different parts of the application, facilitating seamless cross-component and cross-module interactions.
  • Learn How Event Loop Works in Client / Server Side in JavaScriptMay 26, 2023.
  • Important JavaScript Concepts for DevelopersMay 11, 2023. JavaScript Important Concepts for Developers
  • Processing & Handling multiple messages from WebHookApr 28, 2023. When we try to process a message from webhook, and do we need to process the message in queue or priority queue should be processed first
  • Embracing Event Sourcing in .NET 6: Design, Implementation, and Best PracticesApr 26, 2023.
  • How to Use EventCallBacks for Two-Way Communication Between Blazor ComponentsApr 24, 2023. How to Use EventCallBacks for Two-Way Communication Between Blazor Components.
  • Scrum - Roles, Events And Artifacts Apr 21, 2023. This is an article on Scrum Roles, Events, & Artifacts.
  • Plugins and Event Execution Pipeline in DataverseApr 19, 2023. Plugin is a custom event handler that executes in response to a specific event raised during processing a Dataverse operation. It is a custom business logic implemented using custom class as a Class Library in .NET framework. It is compiled into a  assembly that can be uploaded and registered in Dataverse.
  • Azure Messaging And Event Streaming Services - An Overview And Comparison With KafkaApr 04, 2023. In this article, you will learn about Azure Messaging and Event Streaming Services: An Overview and Comparison with Kafka.
  • Storage Event Trigger In DatabricksMar 07, 2023. Trigger jobs when new files arrive in storage container (Azure Blob/AWS bucket)
  • Event Handling In ReactJSMar 06, 2023. In this article, you will learn about Event Handling in ReactJS.
  • Broadcasting Events In AngularFeb 14, 2023. In this article, we will learn Broadcasting events in Angular application. Broadcasting events is generally use for brodcast message or data to whole application.
  • Show And Hide DIVs On Button Click With JavaScriptFeb 13, 2023. In this article, you will learn how to show and hide DIVs on Button Click with JavaScript.
  • How To Handle Event Handling And Routing In ReactFeb 07, 2023. In this article, you will learn how to handle Event Handling and Routing in React.
  • What Is SIEMFeb 02, 2023. Learn about what is SIEM [ Security information and event management ] and its roles.
  • LINQ (Language Integrated Query) Jan 31, 2023. In this article, you will learn about LINQ (Language Integrated Query).
  • Use Of Delegates In C# EventsJan 23, 2023. Here is an example of programs in C# that demonstrates the events with and without delegates.
  • Find Blank Column Using LINQ In UiPath Jan 03, 2023. In this article, you will learn how to find blank column Using LINQ in UiPath.
  • Understand Properties And Events Of Screens In PowerAppsDec 29, 2022. In this article, you will learn about properties and events associated with PowerApps screen.
  • Events And Delegates In Class Library And Worker ServiceDec 21, 2022. In this article, you will learn about Events and Delegates in Class Library and Worker Service.
  • Apache Kafka Introduction, Installation, And Implementation Using .NET Core 6Dec 12, 2022. In this article, you will learn about Apache Kafka Introduction, Installation, and Implementation Using .NET Core 6.
  • C# In Practice - Building Tech Support AppDec 01, 2022. In this article, you will learn about simple app building for beginners in C#.
  • Difference Between Single Vs SingleOrDefault And First Vs FirstOrDefaultNov 28, 2022. In this article, you will learn about the Difference Between Single Vs SingleOrDefault And First Vs FirstOrDefault.
  • Reverse Words In A String In C#Nov 07, 2022. Given a string s, reverse the order of characters in each word within a sentence while still preserving whitespace and initial word order.
  • Blazor Life Cycle Events - OversimplifiedOct 10, 2022. There's a lot that goes into memory when blazor components load into the memory. There are 8 methods which decide the lifecycle of a component. Let's take a deep dive to understand how they communicate to make components alive.
  • LINQ Partitioning Operators - Take, TakeWhile, Skip & SkipWhileSep 13, 2022. Take, TakeWhile, Skip and SkipWhile are called Partitioning Operators and we’ll discuss and investigate them. Not only that we’ll also see an equivalent loop construct to appreciate where these operators derived.
  • SharePoint Framework (SPFx) - Graph API - ReactJS Get Calendar Events From Office 365Aug 08, 2022. In this article, we will see how we can get calendar events from Office 365 into a SharePoint framework – SPFx ReactJS web part using Graph API.
  • Thread-Safe Events In C#Jul 30, 2022. Discussion on the proper method to check for null-value and raise Event in C#.
  • How To Debug Azure Event Grid Trigger Function Using PostmanJul 02, 2022. How To Debug Azure Event Grid Trigger Function Using Postman
  • Azure Event Grid - Trigger Event To EndpointJun 02, 2022. In this article, we'll learn to trigger event to the endpoint.
  • Event Subscription Using Web Hook May 27, 2022. In this article, we'll learn about subscribing to blob storage for the Azure Event Grid Article Series.
  • Routing Blob Storage Events Using Azure Event GridMay 23, 2022. In this article, we'll learn to route blob storage events with Azure Event Grid.
  • Events On Collection (List) In C#May 17, 2022. Events on Collection using List. The Application example shows how to add Events on Different Methods of List in C#.

About LINQ-event

NA

OUR TRAINING