Resources  
  • 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.
  • 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.
  • The Art of JavaScript Hoisting: Understanding the Ins and OutsJun 11, 2024. Discover the intricacies of JavaScript hoisting in this comprehensive guide. Understand how JavaScript handles variable and function declarations, the impact of scope, and the best practices to avoid common pitfalls.
  • 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.
  • 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.
  • 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.
  • How to Integrate Instant Plugins in the Canvas App?Apr 29, 2024. Dataverse Accelerator by Microsoft introduces low-code plug-ins for real-time business logic workflows in Canvas apps. Learn step-by-step integration of Instant Plugin with Power Fx in Dataverse environment. Test and utilize the Instant Plugin for efficient app development.
  • 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.
  • 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.
  • 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.
  • 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.
  • Establishing Communication Between Executable Files Using TCP/IPMar 19, 2024. WPF apps use various IPC methods like Named Pipes, WCF, TCP/IP Sockets. TCP/IP sockets offer cross-platform communication with advantages like reliability but face complexity and firewall issues. Steps include server/client development, execution instructions. Use CommonHelper for collaboration.
  • 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 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.
  • 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.
  • 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.
  • 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.
  • 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!
  • How To Create a WCF ServiceDec 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?
  • 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.
  • 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.
  • 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.
  • Collections in KotlinJun 12, 2023. The article wraps Collections in Kotlin and provides a summary or final thoughts on the topic.
  • Types of WCF ContractJun 05, 2023. In WCF(Windows Communication Foundation), contracts play an essential role. WCF Contracts can be defined as what the service is for and what action it can perform.
  • 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#.
  • 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.
  • 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.
  • 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
  • Differences Between WCF And Web API. Which One To Choose?Oct 26, 2022. Is it worth learning WCF? Is WCF dead? What are the differences between WCF and Web API? When should I use WCF and when should I use Web API?
  • How To Add Custom Add-Ins To MS WordOct 07, 2022. This article shows you how to add add-ins to word desktop.
  • 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.
  • How To Add Add-Ins In PowerPoint Sep 20, 2022. In this article, you will learn how to add custom add-ins.
  • 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.
  • How To Deploy Excel Add-ins To Your OrganizationAug 12, 2022. This article show you how to deploy excel add-ins in your organization.
  • 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.
  • How To Add Custom Add-Ins To ExcelJul 05, 2022. In this article, you will learn how to add Excel add-ins.
  • LinkedList Class In UTIL Package CollectionJun 19, 2022. The Linked List class provides a linked-list data structure.
  • How To Deploy PowerPoint Add-ins To Your OrganizationJun 15, 2022. This article shows you, how to deploy PowerPoint add-ins.
  • Three Cursors In Collection FrameworkJun 15, 2022. In this article, you will learn about cursor in the collection framework.
  • How To Deploy Word Add-Ins To Your OrganizationJun 03, 2022. This article show you how to deploy word add-ins to your organization.
  • 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#.
  • How To Create Excel Add-Ins?May 10, 2022. Create an Excel add-in using HTML, CSS, JavaScript, or C# to enhance functionality across various platforms, including Excel for Windows, Mac, and Office 365. Install Yeoman and the generator-office globally, generate a project, and run it using npm commands. Test your add-in in Excel’s Home Tab.
  • 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.
  • How To Create PowerPoint Add-InsApr 04, 2022. in this article, I will show you how to create PowerPoint Add-ins
  • 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
  • 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
  • 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
  • How To Deploy Outlook Add-ins To Your OrganizationMar 19, 2022. This article provides a comprehensive guide on deploying Outlook add-ins to organizations for other users. It covers the step-by-step process of deploying add-ins using Office 365, ensuring easy access for users within the organization.
  • How To Publish Outlook Add-Ins Using Visual Studio CodeMar 17, 2022. In this article, you will learn how to publish outlook add-ins using visual studio code.
  • How To Create Word Add-InsMar 16, 2022. This article outlines the steps to create and run a Word add-in using technologies like HTML, CSS, JavaScript, and C#. Word add-ins enhance functionality and work across platforms, including Windows, Mac, and Office 365.
  • Performance Comparison Using Three Different Methods for Joining ListsMar 07, 2022. This article explores the performance of joining 2 large lists based on 3 different methods: AddRange, using arrays, and using Linq&#39;s Concat extension method.
  • Implement The Dynamic Collection View In Xamarin.iOSFeb 03, 2022. In this article, I have explained about dynamic collection view feature in iOS and if you add collection view in your apps and it main job is to manage the data associated with collection. The collection view presents items onscreen using a cell, which is an instance of the UICollectionView class that your data source configures and provides. Data in the collection view is organized into individual items, which you can group into sections for presentation. An item is the smallest unit of data you want to present The collection view gets its data from the data source object, stored in the collection view’s Data Source property.
  • Exploring Collections library In PythonDec 26, 2021. The article explains the alternative to traditional Python collections which is Collections module
  • Collection Performance - How Do You LINQ?Dec 04, 2021. In this article, you will learn how do you LINQ?
  • How To Create Outlook Add-insNov 24, 2021. Creating Outlook add-ins involves using tools like VSTO or Office JavaScript API, programming in C# or JavaScript, and customizing UI elements like ribbons and task panes. Deployment via Office Store and ensuring security are key considerations.
  • C# SortedSet with ExampleOct 28, 2021. In any programming language, collections play a very important role. Many times we need Sorted collections, so I felt to discuss SortedSet collections in this article. This article can be used by beginners, intermediate, and professionals.
  • The New PriorityQueue Collection In .NET 6Aug 05, 2021. In this article, you will learn about the new PriorityQueue collection in .NET 6.

About Collection-in-WCF

NA

OUR TRAINING