Queryable.LastOrDefault<TSource> Method (IQueryable<TSource>)

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Returns the last element in a sequence, or a default value if the sequence contains no elements.

Namespace:  System.Linq
Assembly:  System.Core (in System.Core.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function LastOrDefault(Of TSource) ( _
    source As IQueryable(Of TSource) _
) As TSource
public static TSource LastOrDefault<TSource>(
    this IQueryable<TSource> source
)

Type Parameters

  • TSource
    The type of the elements of source.

Parameters

Return Value

Type: TSource
default(TSource) if source is empty; otherwise, the last element in source.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryable<TSource>. When you use instance method syntax to call this method, omit the first parameter.

Exceptions

Exception Condition
ArgumentNullException

source is nulla null reference (Nothing in Visual Basic).

Remarks

The LastOrDefault<TSource>(IQueryable<TSource>) method generates a MethodCallExpression that represents calling LastOrDefault<TSource>(IQueryable<TSource>) itself as a constructed generic method. It then passes the MethodCallExpression to the Execute<TResult>(Expression) method of the IQueryProvider represented by the Provider property of the source parameter.

The query behavior that occurs as a result of executing an expression tree that represents calling LastOrDefault<TSource>(IQueryable<TSource>) depends on the implementation of the type of the source parameter. The expected behavior is that it returns the last element in source, or a default value if source is empty.

The LastOrDefault method does not provide a way to specify a default value. If you want to specify a default value other than default(TSource), use the DefaultIfEmpty<TSource>(IQueryable<TSource>, TSource) method as described in the Example section.

Examples

The following code example demonstrates how to use LastOrDefault<TSource>(IQueryable<TSource>) on an empty array.

      ' Create an empty array.
      Dim fruits() As String = {}

      ' Get the last item in the array, or else the default
      ' value for type string (null).
      Dim last As String = fruits.AsQueryable().LastOrDefault()

      outputBlock.Text &= IIf(String.IsNullOrEmpty(last), "[STRING IS NULL OR EMPTY]", last) & vbCrLf

      ' This code produces the following output:
      ' [STRING IS NULL OR EMPTY]

         // Create an empty array.
         string[] fruits = { };

         // Get the last item in the array, or else the default
         // value for type string (null).
         string last = fruits.AsQueryable().LastOrDefault();

         outputBlock.Text +=
             String.IsNullOrEmpty(last) ? "[STRING IS NULL OR EMPTY]" : last + "\n";

         /*
             This code produces the following output:

             [STRING IS NULL OR EMPTY]
         */

Sometimes the value of default(TSource) is not the default value that you want to use if the collection contains no elements. Instead of checking the result for the unwanted default value and then changing it if necessary, you can use the DefaultIfEmpty<TSource>(IQueryable<TSource>, TSource) method to specify the default value that you want to use if the collection is empty. Then, call Last<TSource>(IQueryable<TSource>) to obtain the last element. The following code example uses both techniques to obtain a default value of 1 if a collection of numeric days of the month is empty. Because the default value for an integer is 0, which does not correspond to any day of the month, the default value must be specified as 1 instead. The first result variable is checked for the unwanted default value after the query is completed. The second result variable is obtained by calling DefaultIfEmpty<TSource>(IQueryable<TSource>, TSource) to specify a default value of 1.

      Dim daysOfMonth As New List(Of Integer)(New Integer() {})

      ' Setting the default value to 1 after the query.
      Dim lastDay1 As Integer = daysOfMonth.AsQueryable().LastOrDefault()
      If lastDay1 = 0 Then
         lastDay1 = 1
      End If
      outputBlock.Text &= String.Format("The value of the lastDay1 variable is {0}", lastDay1) & vbCrLf

      ' Setting the default value to 1 by using DefaultIfEmpty() in the query.
      Dim lastDay2 As Integer = daysOfMonth.AsQueryable().DefaultIfEmpty(1).Last()
      outputBlock.Text &= String.Format("The value of the lastDay2 variable is {0}", lastDay2) & vbCrLf

      ' This code produces the following output:
      '
      ' The value of the lastDay1 variable is 1
      ' The value of the lastDay2 variable is 1

List<int> daysOfMonth = new List<int> { };

// Setting the default value to 1 after the query.
int lastDay1 = daysOfMonth.AsQueryable().LastOrDefault();
if (lastDay1 == 0)
{
   lastDay1 = 1;
}
outputBlock.Text += String.Format("The value of the lastDay1 variable is {0}", lastDay1) + "\n";

// Setting the default value to 1 by using DefaultIfEmpty() in the query.
int lastDay2 = daysOfMonth.AsQueryable().DefaultIfEmpty(1).Last();
outputBlock.Text += String.Format("The value of the lastDay2 variable is {0}", lastDay2) + "\n";

/*
 This code produces the following output:

 The value of the lastDay1 variable is 1
 The value of the lastDay2 variable is 1
*/

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.