1 / 35

Introduction to LINQ and Generic Collections

9. Introduction to LINQ and Generic Collections. To write it, it took three months; to conceive it three minutes; to collect the data in it—all my life. F. Scott Fitzgerald Science is feasible when the variables are few and can be enumerated; when their combinations are distinct and clear.

Download Presentation

Introduction to LINQ and Generic Collections

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 9 • Introduction toLINQ and Generic Collections

  2. To write it, it took three months;to conceive it three minutes;to collect the data in it—all my life. F. Scott Fitzgerald Science is feasible when the variablesare few and can be enumerated; whentheir combinations are distinct and clear. Paul Valéry You shall listen to all sides and filterthem from your self. Walt Whitman

  3. The portraitist can select one tiny aspect of everything shown at a moment to incorporateinto the final painting. Robert Nozick List, list, O, list! William Shakespeare Be wise to-day; ’t is madness to defer. Edward Young

  4. OBJECTIVES In this chapter you will learn: • Basic LINQ concepts. • How to query an array using LINQ. • Basic .NET collections concepts. • How to create and use a generic List collection. • How to write a generic method. • How to query a generic List collection using LINQ.

  5. 9.1   Introduction • 9.2   Querying an Array Using LINQ • 9.3   Introduction to Collections • 9.4   Querying a Generic Collection Using LINQ

  6. 9.1  Introduction • Collections offer greater capabilities than arrays. • Lists automatically change their size. • Large amounts of data are often stored in a database. • A database management system (DBMS) is used to control data.

  7. 9.1  Introduction (Cont.) • SQL is the international standard used with relational databases. • LINQ (Language-Integrated Query) allows you to write query expressions to retrieve information. • LINQ to Objects can query arrays and Lists, selecting elements that satisfy a set of conditions.

  8. 9.1  Introduction (Cont.) Fig. 9.1|LINQ usage throughout the book.

  9. Outline • Figure 9.2 demonstrates querying an array using LINQ. LINQWithSimpleTypeArray.vb ( 1 of 4 ) Returns all Integers in the array greater than 4. Fig. 9.2|LINQ to Objects using an Integer array. (Part 1 of 4.)

  10. Outline LINQWithSimpleTypeArray.vb ( 2 of 4 ) OrderBysorts results in ascending order. The Descending query operator sorts results in descending order. Fig. 9.2|LINQ to Objects using an Integer array. (Part 2 of 4.)

  11. Outline LINQWithSimpleTypeArray.vb ( 3 of 4 ) Returns sorted Integers in the array greater than 4. IEnumerable(Of Integer) object (such as a LINQ query) as a parameter. Fig. 9.2|LINQ to Objects using an Integer array. (Part 3 of 4.)

  12. Outline LINQWithSimpleTypeArray.vb ( 4 of 4 ) Iterates through the query results. Fig. 9.2|LINQ to Objects using an Integer array. (Part 4 of 4.) • OrderBysorts results in ascending order. • The Descending query operator sorts resultsin descending order.

  13. 9.2  Querying an Array Using LINQ • The From clause specifies a range variable and the data source to query. • If the condition in the Where clause evaluates to True, the element is subject to the Select clause. • The Select clause specifies what value appears in the results. If omitted, the range variable is selected.

  14. 9.2  Querying an Array Using LINQ (Cont.) • Interfaces define and standardize classes. • IEnumerable is an interface describing a collection of objects (such as an array or a LINQ result). • A ForEach…Next statement can iterate through any IEnumerable object.

  15. Outline Using LINQ to Query an Array of Employee Objects • Figure 9.3 presents the Employee class. Employee.vb ( 1 of 3 ) Fig. 9.3|Employee class with FirstName, LastName andMonthlySalary properties. (Part 1 of 3.)

  16. Outline Employee.vb ( 2 of 3 ) Fig. 9.3|Employee class with FirstName, LastName andMonthlySalary properties. (Part 2 of 3.)

  17. Outline Employee.vb ( 3 of 3 ) Fig. 9.3|Employee class with FirstName, LastName andMonthlySalary properties. (Part 3 of 3.)

  18. Outline LINQWithArrayOfObjects.vb ( 1 of 5 ) The compiler infers that the range variable is of type Employee. Fig. 9.4|LINQ to Objects using an array of Employeeobjects. (Part 1 of 5.)

  19. Outline LINQWithArrayOfObjects.vb ( 2 of 5 ) Fig. 9.4|LINQ to Objects using an array of Employeeobjects. (Part 2 of 5.)

  20. Outline LINQWithArrayOfObjects.vb ( 3 of 5 ) The compiler creates an anonymous class with the selected properties. Fig. 9.4|LINQ to Objects using an array of Employeeobjects. (Part 3 of 5.)

  21. Outline LINQWithArrayOfObjects.vb ( 4 of 5 ) Fig. 9.4|LINQ to Objects using an array of Employeeobjects. (Part 4 of 5.)

  22. Outline LINQWithArrayOfObjects.vb ( 5 of 5 ) Fig. 9.4|LINQ to Objects using an array of Employeeobjects. (Part 5 of 5.)

  23. 9.2  Querying an Array Using LINQ (Cont.) • Count returns the number of elements in the result. • The First method returns the first element. • The Distinct clause prevents duplicates in results.

  24. 9.2  Querying an Array Using LINQ (Cont.) • In a LINQ Select clause, list an object’s properties in a comma-separated list. • The compiler creates a new class with select properties called an anonymous class. • Local type inference allows you to use anonymous types without using names.

  25. 9.2  Querying an Array Using LINQ (Cont.) • Overloaded methods can be more compactly coded using a generic method. • Specify a type parameter list—placed in parentheses following the method name, begins with keyword Of and contains one or more type parameters. • A type parameter is a placeholder for an actual type. • When you call a generic method, the compiler infers the type. Common Programming Error 9.1 If you forget to include the type-parameter list when declaring a generic method, the compiler will not recognize the type parameter names when they’re encountered in the method, causing compilation errors.

  26. 9.3  Introduction to Collections • The collection List(OfT) can hold a list of whatever type of elements that you want: Dim list1 As List(OfInteger) Dim list2 As List(OfString) • Classes with this kind of placeholder that can be used with any type are called generic classes.

  27. 9.3  Introduction to Collections (Cont.) Fig. 9.5|Some methods and properties of class List(OfT). (Part 1 of 2.)

  28. 9.3  Introduction to Collections (Cont.) Fig. 9.5|Some methods and properties of class List(OfT). (Part 2 of 2.)

  29. Outline • Figure 9.6 demonstrates dynamically resizing a List object. ListCollection.vb ( 1 of 3 ) The Add method appends its argument to the end of the List. The Insert inserts a new element at the specified position. Displaying the itemsin the List. Fig. 9.6|Generic List collection demonstration. (Part 1 of 3.)

  30. Outline ListCollection.vb ( 2 of 3 ) More items are added, then the List is displayed again. The Remove method removes the first element with a given value. RemoveAt removes the element at the specified index. Contains returns True if the String is already in the List. Countreturns the length of theList. Fig. 9.6|Generic List collection demonstration. (Part 2 of 3.)

  31. Outline ListCollection.vb ( 3 of 3 ) The Capacityproperty indicates how many items the List can hold without being resized. Fig. 9.6|Generic List collection demonstration. (Part 3 of 3.)

  32. 9.3  Introduction to Collections (Cont.) • TheRemovemethod removes the first elementwith a given value. • RemoveAtremoves the element at the specified index.

  33. 9.3  Introduction to Collections (Cont.) • Containsreturns True if the String is alreadyin theList. • Countreturns the length of theList. • The Capacityproperty indicates how many items the List can hold without being resized.

  34. Outline • Fig. 9.7, a List of Strings is queried. • LINQ’s deferred execution means that the query is executed only when the results are retrieved, so thesame query can be re-used. LinqWithListCollection.vb ( 1 of 2 ) Selecting Strings that start with "r". An all-uppercase String is returned by ToUpper. Fig. 9.7|LINQ to Objects using a List(OfString). (Part 1 of 2.)

  35. Outline LinqWithListCollection.vb ( 2 of 2 ) Fig. 9.7|LINQ to Objects using a List(OfString). (Part 2 of 2.)

More Related