Resources  
  • Generic Repository with EF Core Store Procedure in .NET Core 8Jul 16, 2024. Entity Framework Core (EF Core) empowers .NET developers with seamless database interaction through object-relational mapping (ORM) and support for stored procedures. It optimizes performance by executing complex SQL logic directly on the server, enhancing efficiency for CRUD operations.
  • Using Find Instead of FirstOrDefault with Collections in C# .NETJul 15, 2024. When working with collections in C# .NET, FirstOrDefault and Find serve similar purposes of retrieving elements based on conditions. FirstOrDefault is versatile for any IEnumerable<T>, while Find is optimized for List<T>, offering potentially better performance in list operations.
  • Generic Repository with EF Core in .NET Core 8Jul 03, 2024. Observe the Entity Framework Core Generic Repository! The subject that will make some people uncomfortable. They are unwilling to discuss it at all. Others, on the other hand, adore it and become giddy at the mere mention of the generic repository pattern.
  • How to Create Multiple Filters in Gallery using CollectionJul 03, 2024. Filtering gallery on multiple selection is most demanding user-friendly functionality which could be expected by any business. In this post, we'll look at how to design and implement multiple filter on gallery using collection.
  • How to Define a Custom Connector Using a Postman CollectionJul 02, 2024. Learn to convert Postman collections into custom connectors for Microsoft Power Platform. Export your collection in v2.1 format, import it into Power Automate or Power Apps, configure with host and base URLs, set authentication (API key, OAuth 2.0), and integrate seamlessly into workflows.
  • Mastering LINQ: TakeWhile and SkipWhile in C# .NETJul 01, 2024. Explore LINQ's TakeWhile and SkipWhile methods in C#, which enhance data querying by conditionally including or excluding elements based on predicates. Learn how to use these powerful methods to process collections effectively, with detailed examples demonstrating their functionality and practical applications.
  • Set Interface and Map Interface in java.util PackageJun 26, 2024. The Set Interface and Map Interface within the java.util package are fundamental components of Java's Collections Framework. The Set Interface defines a collection that does not allow duplicate elements, offering implementations like HashSet, TreeSet, and LinkedHashSet.
  • Learn Garbage Collection in PythonJun 17, 2024. Discover how garbage collection in Python manages memory automatically, preventing memory leaks and optimizing performance. Learn about reference counting, the role of the garbage collector, handling circular references, and best practices for efficient memory management in Python applications.
  • Garbage Collection (3), C# using statement --- Language support for DisposeJun 17, 2024. This article will discuss the C# using a statement. Garbage collection (GC) in computer science reclaims unused memory automatically. Invented by John McCarthy in 1959, GC simplifies memory management. This series explores GC in .NET, focusing on managed, unmanaged code and the `using` statement for resource management.
  • Streamlining Collection Chunking in .NET 6: .Chunk vs. MethodsJun 16, 2024. .NET 6 introduced several new features and enhancements that streamline development in C#. One such feature is the . The chunk method, which provides a simple way to split collections into smaller, manageable parts.
  • Func Delegates in .NET Core C#: Syntax, Usage and ExamplesJun 13, 2024. Func and Action are two generic delegate types that are built into C#, so you usually don't need to explicitly define custom delegates. A generic delegate called Func is part of the System namespace. It has one out parameter and zero or more input parameters. As an out parameter, the final one is regarded as such.
  • Fix Generic Error in Custom Activity Using Batch Account in ADFJun 11, 2024. While executing a C# code in custom activity using batch activity in ADF sometimes it would get the error "The underlying connection was closed: An unexpected error occurred on a send. ---> System.IO.IOException: Unable to read data from the transport connection.
  • Frozen Collections in .NET 8Jun 10, 2024. Frozen Collections in .NET 8" explores the introduction of frozen (immutable) collections in the latest .NET framework. These collections offer performance optimizations and enhanced memory management by ensuring data structures are read-only after creation.
  • Optimizing Memory Management in C#Jun 04, 2024. In this article, we will learn Memory management and optimization are crucial aspects of C# development, especially for applications that demand high performance and efficient resource utilization.
  • The Simplicity of the New Terse Syntax [ Collection Expressions ]Jun 03, 2024. Explore the elegance of the latest terse syntax for collection expressions, offering unparalleled simplicity in programming. Dive into efficient coding techniques, optimized syntax, and enhanced readability, revolutionizing how you interact with collections in programming languages.
  • Mongo DB Indexing Strategies with Real-time ScenariosJun 03, 2024. MongoDB, a scalable NoSQL Database, uses indexing to optimize query performance. Indexing involves creating data structures to expedite data retrieval operations on collections, enhancing efficiency. This article delves into indexing, covering syntax, parameters, and various index types like compound.
  • 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.
  • Understanding Generic Constraints in C#May 21, 2024. Generics in C# allow you to define classes, methods, and interfaces with a placeholder for the type of data they store or use. This flexibility enables you to write more general and reusable code.
  • Learn About Observer Design PatternMay 20, 2024. The Observer Design Pattern is a behavioral design pattern where an object, called the subject, maintains a list of its dependents, called observers, and notifies them of any state changes, typically by calling one of their methods.
  • Exploring in Depth Of Abstraction in C#May 14, 2024. Dive deep into abstraction in C#, exploring OOP concepts like encapsulation, inheritance, and polymorphism. Learn about abstract classes, interfaces, generics, and advanced features like delegates and events, enhancing code modularity and scalability.
  • All About BI Tools and Types to Make You Ready for Next ActionMay 13, 2024. This article is for you if you are getting your steps in BI Tech Stack. Here in this article, you will learn the basics of BI with its types.
  • Migrate to Azure Monitor Agent from Legacy Log Analytics AgentMay 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.
  • Dictionary in .NET C#: Syntax, Methods, and ExampleMay 07, 2024. In C#, a dictionary is a generic collection that holds elements as pairs of keys and values. The Non-Generic Hashtable collection and the Generic Dictionary operate extremely similarly.
  • Understanding Garbage Collection in .NET CoreMay 05, 2024. Garbage collection (GC) is a fundamental aspect of memory management in modern programming languages like C#. In the context of .NET Core, the GC system plays a crucial role in automatically reclaiming memory that is no longer in use, thereby preventing memory leaks and ensuring efficient memory utilization.
  • HashSet .NET C#: Usage, Methods, and ExampleMay 03, 2024. A hash set is an unordered list of distinct elements in C#. In.NET 3.5, this collection is released. When we wish to stop duplicate pieces from being added to the collection, we typically utilize it. When compared to a list, the HashSet performs substantially better.
  • ConcurrentBag<T> in C#: Thread-Safe Collection GuideApr 23, 2024. In the world of concurrent programming in C#, managing data safely across multiple threads is a paramount concern. In this article, we&#39;ll delve into ConcurrentBag&lt;T&gt;, its usage, and provide simple examples to help developers grasp its concepts more effectively.
  • ConcurrentBag<T> in C#: Thread-Safe Collection for ConcurrencyApr 23, 2024. Concurrent programming in C# often involves managing shared data among multiple threads. In this article, we&#39;ll delve into what ConcurrentBag&lt;T&gt; is, how it works, and when to use it.
  • Types of Modern Site Collections - SharePointApr 18, 2024. This Article demonstrate what actually SharePoint Modern Site Collection is and Various types of Modern Site Collection that can be used as per the business needs.
  • Plant Disease Classifier with Azure AI Custom Vision and BlazorApr 17, 2024. This concise article explores the innovative integration of Azure AI Custom Vision service with a Blazor web application to create a sophisticated Plant Diseases Classifier model. The article highlights the seamless fusion of cutting-edge AI technology with modern web development.
  • Learn About Collections in RustApr 17, 2024. In this article, we will explore all types of collections in the Rust Programming Language. Collections are essential in Rust for efficient data management. Arrays hold fixed-size elements, vectors offer dynamic resizing, and slices provide references to portions of collections.
  • What is Generics in .NET C# with exampleApr 15, 2024. Generics in C# represent a cornerstone of modern software development, offering a powerful mechanism for creating reusable and type-safe code. This comprehensive article explores the fundamentals of generics, delving into practical examples and best practices to harness their full potential.
  • Bubble Sort Algorithm in C# with Generic Method ExampleApr 15, 2024. Bubble Sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements, and swaps them if they are in the wrong order. The pass through the list is repeated until the list is sorted.
  • Exploring Frozen Collections in .NET 8 With BenchmarkingApr 14, 2024. Frozen Collections is a new .NET 8 feature that can be used to create Dictionaries and Sets for faster read operations when you don’t need to make changes after the creation. In this article, I present how to work with these collections and demonstrate the performance difference when compared with other collections.
  • Learn Memory Management in JavaScriptApr 08, 2024. JavaScript employs automatic memory management through garbage collection, eliminating manual memory allocation and deallocation. Here&#39;s how it works and considerations for efficient coding.
  • Learn about Queue in C# with examplesMar 21, 2024. In this article, we will explore Queue data structure in C#, facilitating FIFO (First In, First Out) operations. Utilize methods like Enqueue, Dequeue, and Peek for efficient data manipulation.
  • Mastering Data Mining Techniques Mar 18, 2024. Data mining uncovers hidden patterns in vast data reserves, guiding decision-making. Key preprocessing steps ensure data quality, from collection to transformation, optimizing insights for impactful analysis and decision-making.
  • What is Use of ‘Using’ Statement in .NET?Mar 15, 2024. In this article, we will cover What is the use of the ‘Using’ statement in .NET. The &#39;using&#39; statement in .NET ensures efficient resource management, prevents memory leaks, and promotes cleaner, more reliable code.
  • Why Any() Outperforms Count() in Collection ChecksMar 06, 2024. Efficiency in programming is vital, and choosing the right method for tasks is crucial. Explore why Any() often outperforms Count() in specific scenarios with illustrative examples in C#.
  • Creating Cascading Dropdowns Using Collections in PowerApps Mar 02, 2024. We will explore how to create cascading dropdowns using collections in PowerApps without relying on SharePoint lists. Follow the steps to set up and add data to collections, enabling dynamic user interfaces.
  • Understanding the Art of C# GenericsMar 01, 2024. Unlock the power of C# Generics with our comprehensive guide. Master best practices, explore advanced scenarios, and elevate your coding skills with this in-depth C# Generics tutorial. Learn to write efficient, flexible, and type-safe code for a wide range of scenarios, ensuring optimal performance.
  • Understanding and Managing Access Control in SharePointFeb 29, 2024. Understanding and Managing Access Control in SharePoint in detail step by step , such as Grant Permissions, Create Group ,Grant/Edit User Permissions ,Remove User Permissions , Modify Permissions ,Check Permissions , Permission Levels , Access Request Settings , Site Collection Administrators.
  • Exporting and Importing Site Collection Term Stores In SharePointFeb 27, 2024. Looking to streamline your SharePoint management? Learn how to efficiently export and import Site Collection Term Store Groups! ?? From exporting your Term Store Groups for backup or migration purposes to importing them into new site collections, we&#39;ll walk you through the step-by-step process.
  • 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.
  • Creating Collections from SharePoint Lists in PowerAppsFeb 15, 2024. Learn how to utilize collections in PowerApps to manage data within your application, especially useful for scenarios where users may be offline or have limited connectivity. Discover the advantages of collections over SharePoint lists, including the ability to perform complex queries.
  • How to Backup/Restore MongoDB Database and CollectionsFeb 11, 2024. Backing up and restoring a MongoDB database and collection with command definition explanation and example as well.
  • How to Create Site Collection in SharePoint Online?Feb 05, 2024. How to create a site in SharePoint online. This guide outlines steps from signing in to the SharePoint Admin Center, initiating the creation process, configuring settings, reviewing, and confirming.
  • Implementation of Collection View in .NET MAUIFeb 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.
  • Array Operations in JavaScriptJan 17, 2024. Arrays are fundamental in JavaScript, allowing storage and manipulation of collections. Common operations include element access, addition/removal, iteration, built-in methods (map, filter, reduce), slicing, finding, and filtering/mapping.
  • Concurrent Collections in C#Jan 12, 2024. Unlock the power of concurrency in C# with a deep dive into concurrent collections. From ConcurrentDictionary for thread-safe dictionaries to BlockingCollection for versatile blocking operations, master efficient and safe multi-threaded programming.
  • Understanding Collection Types in C#Jan 09, 2024. Delving into collection types like IEnumerable and IQueryable in C# unveils their impact on data querying efficiency. While IEnumerable offers simplicity for in-memory operations, it might load unnecessary data. IQueryable optimizes query execution by fetching only required data, which is beneficial, especially with extensive datasets or remote sources.
  • Understanding Dictionary in C#Jan 03, 2024. In this article, we will learn about the potential of C#&#39;s Dictionary collection type with this comprehensive guide. Learn essential operations, iterate through key-value pairs, and explore advanced features, empowering efficient data management in your C# applications.
  • What is Collection Expressions in C# 12?Jan 03, 2024. Forget the days of writing mountains of code just to create simple lists or arrays. C# 12 unleashes collection expressions, your new superpower for crafting collections with ease and elegance. This friendly guide demystifies the magic behind these expressions, even if you&#39;re a coding newbie.
  • Essential Features of C# 12 You Need to KnowDec 28, 2023. Unlock C#&#39;s hidden potential with features that make coding a breeze. Streamlined constructors, effortless collections, and enhanced lambdas await!
  • NuGet for .NET 8Dec 27, 2023. Unleash the power of NuGet for .NET 8! This update revolutionizes package management with enhanced security, centralized dependencies, performance boosters like frozen collections, and productivity tools like improved diagnostics. It&#39;s time to say goodbye to vulnerabilities and chaos, and embrace a streamlined, secure, and joyful development journey!
  • Traits and Generics in RustDec 20, 2023. In this article, we will explore Traits and Generics in Rust. Explore the power of Rust, a programming language known for speed, memory safety, and clever code writing. Uncover the concepts of &#39;traits&#39; and &#39;generics,&#39; enabling reusable, flexible, and type-safe coding. Traits act as guides, while generics facilitate code adaptability. Discover how to declare, implement traits, and use generics for functions and data structures.
  • Collection Expressions in C# 12Dec 12, 2023. C# 12.0 introduces collection expressions, streamlining collection initialization syntax. This evolution enhances code conciseness, readability, and performance, simplifying developers&#39; interaction with arrays, lists, and more.
  • .NET Core: Detail of Lifetime ManagementNov 21, 2023. In .NET Core, lifetime management refers to how objects are created, used, and eventually disposed of within an application. It ensures efficient resource utilization and prevents memory leaks.
  • Java 21: New Features and ExamplesNov 02, 2023. Java 21 is a major release that includes a number of new features and improvements that make Java more concise, expressive, safe, and performant. Some of the most significant new features include record classes, sealed classes, pattern matching for instanceof, virtual threads, and sequenced collections.In short, Java 21 is a must-have update for any Java developer. It includes a number of new features that can help you to write better code, faster.
  • New Features of Rust 1.73Nov 02, 2023. Rust 1.73 is a major release that includes a number of new features and improvements, such as impl Trait syntax, generic associated types, and improved borrow checker performance. These changes make Rust more expressive, efficient, and user-friendly.
  • Advanced Garbage Collection PotentialOct 25, 2023. Learn commands of the Garbage Collector to work efficiently. I encountered a significant obstacle during a recent image and pdf processing project using Windows Forms Applications. Despite having a system equipped with x64 architecture and an abundance of RAM, the application consistently failed, unable to handle the processing load.
  • Generics in C#: Enhancing Code Reusability and Type Safety Oct 04, 2023. In this article, we will explore the concept of generics in C# with detailed examples, showcasing how they enhance code flexibility and maintainability.
  • Mastering List Collections in C# Sep 24, 2023. Explore the power and versatility of C# List collections with this comprehensive guide. From basic operations to advanced techniques, learn how to harness the full potential of lists for effective data manipulation. Whether you&#39;re a beginner looking to master the essentials or an experienced developer seeking to level up your C# skills, this guide provides a step-by-step journey through list collections, making complex data management accessible and efficient.
  • Garbage Collection in C#Sep 08, 2023. In C#, garbage collection is a memory management process where the runtime environment automatically identifies and reclaims memory that is no longer in use by the program. It helps prevent memory leaks and ensures efficient memory utilization by tracking and deallocating objects that are no longer reachable or referenced by the program. The .NET runtime provides an automatic garbage collector that runs in the background, making it easier for developers to work with memory without having to explicitly free memory resources like in languages with manual memory management, such as C and C++. This automated process helps improve code safety and reduces the risk of memory-related errors.
  • List In KotlinSep 04, 2023. In this article, we delve into Kotlin&#39;s Lists, fundamental in managing collections of items. Learn about Immutable and Mutable Lists, key methods, and their practical use cases.
  • Generic in C#Sep 01, 2023. Generics in C# 2.0 revolutionize code design by decoupling classes and methods from data types. They&#39;re key in creating strongly typed, reusable, and performant code. You declare generics using the `&lt;&gt;` symbol.
  • 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.
  • Using the OrderBy and OrderByDescending Operator in LINQAug 08, 2023. Using the OrderBy and OrderByDescending Operator in LINQ: Sorting Collections
  • Server Side Pagination in MongoDBJun 21, 2023. Here is a step-by-step guide to implementing server-side pagination in MongoDB.
  • Mastering C# Enums: An Essential Guide with ExamplesJun 13, 2023.
  • Collections in KotlinJun 12, 2023. The article wraps Collections in Kotlin and provides a summary or final thoughts on the topic.
  • 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.
  • How To Check The Length Of An Array In C#May 05, 2023. In this article, you will learn How to check the Length of an array in C#
  • Applying site scripts to modern site collections using Power AutomateApr 21, 2023. Process of applying site scripts to modern site collections using Power Automate.
  • How To Copy An Array In C#Apr 19, 2023. In this article you will learn How to copy array in C#.
  • Create Generic HttpClient Call Function With Error Handling In C#Mar 09, 2023. This article presents a step-by-step guide on how to create a generic HttpClient call function in C# that can handle different request methods, request body types, response types, and error handling using optional parameters. By following the provided code examples and explanations, readers can learn how to simplify HTTP requests in their C# applications and reduce the risk of errors.
  • Generic Interface And Generic Repository For Developing ASP.NET Core Web APIFeb 28, 2023. In this article, you will learn about Generic Interface and Generic Repository for Developing Asp.net Core Web API.
  • How To Conditionally Display/Hide Controls Using A Checkbox And A Gallery ControlFeb 07, 2023. In this article, we will learn how to show or hide certain elements based on certain conditions. This can be useful in scenarios where you only want to display specific controls on screen based on a user&#39;s selection. By using the Collect, Remove, and Concat functions, along with setting the visible
  • Difference Between "RUNTIME" Class And "CLASS" ClassJan 30, 2023. The Runtime class encapsulates the runtime environment. In a running java application, the instances of this class encapsulates the run time state of an object.
  • Postman - Environment, Collection And MonitorsJan 04, 2023. In this article, you will learn about Postman Environment, Collection and Monitors.
  • Creation Of API Reqest Using Postman Tool Dec 27, 2022. In this article, you will learn how to create API Reqest using Postman Tool.
  • Unit Of Work With Generic Repository Implementation Using .NET Core 6 Web APIDec 04, 2022. Unit Of Work with Generic Repository implementation using .NET Core 6 Web API.
  • Using The New Generics Pattern Matching Feature In .NET 7Nov 30, 2022. In this article, you will learn how to use the new generics pattern matching feature in .NET 7.
  • Postman - Setup Workspace And CollectionNov 28, 2022. Swagger (OpenAPI) defines REST APIs for both machines and humans. This article explores integrating C# special comments into Swagger for clearer API documentation and utilization in .NET and .NET Core MVC Web APIs.
  • Using The New Generic Number Interface In .NET 7Nov 28, 2022. In this article, you will learn how to use the new generic number interface in .NET 7.
  • IEnumerable<T> Vs IReadOnlyList<T>Nov 28, 2022. Understanding the differences between IEnumerable&lt;T&gt; and IReadOnlyList&lt;T&gt; when returning immutable collection from method
  • SharePoint Online - How To Copy Site To Different Tenant/Site Collection Using PowerShellSep 28, 2022. In this article, we will learn how to copy a SharePoint site schema from one site collection or tenant to another using PowerShell.
  • Role Of Map Interface And Iterator Interface In JavaAug 29, 2022. A map is a special kind of set with no duplicates. In the Collections API, java.util.Map defines this interface.
  • Implement The Generic Badge View In Xamarin.FormsAug 03, 2022. In this article, I will explain the Generic Badge in xamarin forms. We can implement the badge for Android, iOS and UWP. The plugin creates a custom renderer for each platform and a custom attached property for adding tab bar badges, which can be bound in XF shared code.
  • Arrays Class In JavaJul 30, 2022. In this article, you will learn about the Arrays class in java.
  • Collection Combine In PythonJul 22, 2022. In this article, we will see how we can combine collections easily in Python.
  • LinkedList Class In UTIL Package CollectionJun 19, 2022. The Linked List class provides a linked-list data structure.
  • Three Cursors In Collection FrameworkJun 15, 2022. In this article, you will learn about cursor in the collection framework.
  • 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#.
  • Generic Delegates In C#May 17, 2022. Here ill describe that why we need Generic Delegates what are Generic Delegates, keyword used in Generic Delegates and their type with example
  • Legacy Classes And Legacy Interface Of Collections APIApr 28, 2022. In this article, you will learn about legacy classes and legacy interface of collections api.
  • Collections In C#Apr 05, 2022. The purpose of this article is to demonstrate how to work with arrays and the issues associated with them, followed by Non-Generic collections and their issues, and finally Generic collections which solve both arrays and Non Generic types of problems.
  • Using Power Automate To Upload The Attachments From SharePoint Document LibraryMar 30, 2022. Detailed approach on how to bring in an attachment in a SharePoint library (where SP list will have attachments OOTB but not the library). This article is split into three parts for separating the tasks and this is Part 2
  • Adding Attachments In SharePoint Document Library Using Power Apps List ControlMar 30, 2022. Detailed approach on how to bring in an attachment in a SharePoint library (where SP list will have attachments OOTB but not the library). This article is split into three parts for separating the tasks and this is Part 1
  • Display The Files Stored In Another SharePoint Library Using Power AppsMar 30, 2022. Detailed approach on how to bring in an attachment in a SharePoint library (where SP list will have attachments OOTB but not the library). This article is split into three parts for separating the tasks and this is Part 3
  • Usage Of STL In CPP ProgrammingMar 23, 2022. Standard Template Library that is considered as the bundle of template classes and pre defined functions that is highly used segment for the generic programming.

About Generic-Collection

NA

OUR TRAINING