Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

How to use LINQ to Objects queries


INTRODUCTION

This article describes an All-In-One Code Framework sample that is available for download. This code sample demonstrates how to write LINQ to Objects query including some basic LINQ operations such as SELECT, UPDATE, ORDER BY, MAX and AVERAGE by using Visual C# and Visual Basic .NET. 

Difficulty level

Download information

To download this code sample, click the following link:


Technical overview

The term "LINQ to Objects" refers to the use of LINQ query with any IEnumerable or IEnumerable(T) collection directly, without to use an intermediate LINQ provider or API such as LINQ to SQL or LINQ to XML. You can use LINQ to query any enumerable collections such as List (T), Array, or Dictionary(TKey, TValue). The collection may be user-defined or returned by a .NET Framework API.

In a basic sense, LINQ to Objects query represents a new approach to collections. In the old way, you had to write complex foreach loop that specified how to retrieve data from a collection. In the LINQ approach, you write declarative code that describes what you want to retrieve.

In addition, LINQ query has three main advantages compare to the traditional foreach loop:
  1. LINQ query is more concise and readable, especially when filtering multiple conditions.
  2. LINQ query provides powerful filtering, ordering, and grouping capabilities with minimum lines of application code.
  3. LINQ query can be ported to other data sources with little or no modification.
Generally, the more complex operations that you want to perform on the data, the more benefit you will notice by using LINQ query instead of traditional iteration techniques.

Note For more information about how to create the sample application and how to deploy the sample application, see the Readme.txt file that is included in the download package.

Technology category

  • LINQ

Languages

This code sample contains the following programming languages:

LanguageProject Name
Visual C#CSLinqToObject
Visual Basic.NETVBLinqToObject

Prerequisites

  • This sample application was created by using Visual Studio 2008 with Service Pack 1 installed.

Tags

  • LINQ to Objects

↑ Back to the top


More Information

What is All-In-One Code Framework?

All-In-One Code Framework shows most Microsoft development techniques by using code samples in different programming languages. Each example is carefully selected, composed, and documented to show one common code scenario. For more information about All-In-One Code Framework, visit the following Web site:


How to find more All-In-One Code Framework samples

To find more All-In-One Code Framework samples, you can simply click the following link:



↑ Back to the top


References

For more information about LINQ to Objects, visit the following Web sites:


↑ Back to the top


Keywords: kb, kbrapidpub, atdownload, kbnomt, kbsurveynew, kbinfo, kbcodefx

↑ Back to the top

Article Info
Article ID : 2278185
Revision : 3
Created on : 6/18/2020
Published on : 6/18/2020
Exists online : False
Views : 205