Queryable.LastOrDefault 方法

定義

傳回序列的最後一個項目;如果找不到任何項目,則傳回預設值。

多載

LastOrDefault<TSource>(IQueryable<TSource>, Expression<Func<TSource,Boolean>>, TSource)

傳回序列中符合條件的最後一個元素;如果找不到這類元素,則傳回預設值。

LastOrDefault<TSource>(IQueryable<TSource>, TSource)

傳回序列的最後一個元素;如果序列中沒有包含任何元素,則傳回預設值。

LastOrDefault<TSource>(IQueryable<TSource>, Expression<Func<TSource,Boolean>>)

傳回序列中符合條件的最後一個元素;如果找不到這類元素,則傳回預設值。

LastOrDefault<TSource>(IQueryable<TSource>)

傳回序列中的最後一個項目;如果序列中沒有包含任何項目,則傳回預設值。

LastOrDefault<TSource>(IQueryable<TSource>, Expression<Func<TSource,Boolean>>, TSource)

來源:
Queryable.cs
來源:
Queryable.cs
來源:
Queryable.cs

傳回序列中符合條件的最後一個元素;如果找不到這類元素,則傳回預設值。

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static TSource LastOrDefault(System::Linq::IQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, bool> ^> ^ predicate, TSource defaultValue);
public static TSource LastOrDefault<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,bool>> predicate, TSource defaultValue);
static member LastOrDefault : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, bool>> * 'Source -> 'Source
<Extension()>
Public Function LastOrDefault(Of TSource) (source As IQueryable(Of TSource), predicate As Expression(Of Func(Of TSource, Boolean)), defaultValue As TSource) As TSource

類型參數

TSource

source 項目的類型。

參數

source
IQueryable<TSource>

傳回項目的 IEnumerable<T>

predicate
Expression<Func<TSource,Boolean>>

用來測試每個項目是否符合條件的函式。

defaultValue
TSource

如果序列是空的,則傳回的預設值。

傳回

TSource

defaultValue 如果序列是空的,或沒有元素通過述詞函式中的測試,則為 ;否則,會通過述詞函式中測試的最後一個專案。

例外狀況

sourcepredicatenull

適用於

LastOrDefault<TSource>(IQueryable<TSource>, TSource)

來源:
Queryable.cs
來源:
Queryable.cs
來源:
Queryable.cs

傳回序列的最後一個元素;如果序列中沒有包含任何元素,則傳回預設值。

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static TSource LastOrDefault(System::Linq::IQueryable<TSource> ^ source, TSource defaultValue);
public static TSource LastOrDefault<TSource> (this System.Linq.IQueryable<TSource> source, TSource defaultValue);
static member LastOrDefault : System.Linq.IQueryable<'Source> * 'Source -> 'Source
<Extension()>
Public Function LastOrDefault(Of TSource) (source As IQueryable(Of TSource), defaultValue As TSource) As TSource

類型參數

TSource

source 項目的類型。

參數

source
IQueryable<TSource>

要傳回最後一個項目的 IEnumerable<T>

defaultValue
TSource

如果序列是空的,則傳回的預設值。

傳回

TSource

defaultValue 如果來源序列是空的,則為 ;否則為 中的 IEnumerable<T>最後一個專案。

例外狀況

sourcenull

適用於

LastOrDefault<TSource>(IQueryable<TSource>, Expression<Func<TSource,Boolean>>)

來源:
Queryable.cs
來源:
Queryable.cs
來源:
Queryable.cs

傳回序列中符合條件的最後一個元素;如果找不到這類元素,則傳回預設值。

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static TSource LastOrDefault(System::Linq::IQueryable<TSource> ^ source, System::Linq::Expressions::Expression<Func<TSource, bool> ^> ^ predicate);
public static TSource LastOrDefault<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,bool>> predicate);
public static TSource? LastOrDefault<TSource> (this System.Linq.IQueryable<TSource> source, System.Linq.Expressions.Expression<Func<TSource,bool>> predicate);
static member LastOrDefault : System.Linq.IQueryable<'Source> * System.Linq.Expressions.Expression<Func<'Source, bool>> -> 'Source
<Extension()>
Public Function LastOrDefault(Of TSource) (source As IQueryable(Of TSource), predicate As Expression(Of Func(Of TSource, Boolean))) As TSource

類型參數

TSource

source 項目的類型。

參數

source
IQueryable<TSource>

傳回項目的 IQueryable<T>

predicate
Expression<Func<TSource,Boolean>>

用來測試每個項目是否符合條件的函式。

傳回

TSource

defaultTSource 如果 source 是空的,或沒有任何項目通過述詞函式中的測試,則 () ,否則為在述詞函式中通過測試的最後一source個專案。

例外狀況

sourcepredicatenull

範例

下列程式代碼範例示範如何藉由傳入述詞來使用 LastOrDefault<TSource>(IQueryable<TSource>, Expression<Func<TSource,Boolean>>) 。 在方法的第二次呼叫中,序列中沒有符合條件的專案。

double[] numbers = { 49.6, 52.3, 51.0, 49.4, 50.2, 48.3 };

// Get the last number in the array that rounds to 50.0,
// or else the default value for type double (0.0).
double last50 =
    numbers.AsQueryable().LastOrDefault(n => Math.Round(n) == 50.0);

Console.WriteLine("The last number that rounds to 50 is {0}.", last50);

// Get the last number in the array that rounds to 40.0,
// or else the default value for type double (0.0).
double last40 =
    numbers.AsQueryable().LastOrDefault(n => Math.Round(n) == 40.0);

Console.WriteLine(
    "The last number that rounds to 40 is {0}.",
    last40 == 0.0 ? "[DOES NOT EXIST]" : last40.ToString());

/*
    This code produces the following output:

    The last number that rounds to 50 is 50.2.
    The last number that rounds to 40 is [DOES NOT EXIST].
*/
Dim numbers() As Double = {49.6, 52.3, 51.0, 49.4, 50.2, 48.3}

' Get the last number in the array that rounds to 50.0,
' or else the default value for type double (0.0).
Dim last50 As Double = _
     numbers.AsQueryable().LastOrDefault(Function(n) Math.Round(n) = 50.0)

MsgBox(String.Format("The last number that rounds to 50 is {0}.", last50))

' Get the last number in the array that rounds to 40.0,
' or else the default value for type double (0.0).
Dim last40 As Double = _
    numbers.AsQueryable().LastOrDefault(Function(n) Math.Round(n) = 40.0)

MsgBox(String.Format("The last number that rounds to 40 is {0}.", _
    IIf(last40 = 0.0, "[DOES NOT EXIST]", last40.ToString())))

'This code produces the following output:

'The last number that rounds to 50 is 50.2.
'The last number that rounds to 40 is [DOES NOT EXIST].

備註

這個方法至少有一個類型的參數,其類型 Expression<TDelegate> 自變數為其中一個型別 Func<T,TResult> 。 針對這些參數,您可以傳入 Lambda 運算式,並將它編譯為 Expression<TDelegate>

方法 LastOrDefault<TSource>(IQueryable<TSource>) 會產生 , MethodCallExpression 表示呼叫 LastOrDefault<TSource>(IQueryable<TSource>) 本身為建構的泛型方法。 然後,它會將 傳遞給 MethodCallExpressionExecute<TResult>(Expression) 參數之 屬性所Provider表示的方法IQueryProvidersource

執行表示呼叫 LastOrDefault<TSource>(IQueryable<TSource>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的實作 source 。 預期的行為是它會傳回 中 source 符合 所 predicate指定條件的最後一個專案。 如果 中 source沒有這類元素,它會傳回預設值。

適用於

LastOrDefault<TSource>(IQueryable<TSource>)

來源:
Queryable.cs
來源:
Queryable.cs
來源:
Queryable.cs

傳回序列中的最後一個項目;如果序列中沒有包含任何項目,則傳回預設值。

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static TSource LastOrDefault(System::Linq::IQueryable<TSource> ^ source);
public static TSource LastOrDefault<TSource> (this System.Linq.IQueryable<TSource> source);
public static TSource? LastOrDefault<TSource> (this System.Linq.IQueryable<TSource> source);
static member LastOrDefault : System.Linq.IQueryable<'Source> -> 'Source
<Extension()>
Public Function LastOrDefault(Of TSource) (source As IQueryable(Of TSource)) As TSource

類型參數

TSource

source 項目的類型。

參數

source
IQueryable<TSource>

要傳回最後一個項目的 IQueryable<T>

傳回

TSource

default如果 source 是空的TSource, () ,否則為 中的source最後一個專案。

例外狀況

sourcenull

範例

下列程式代碼範例示範如何在 LastOrDefault<TSource>(IQueryable<TSource>) 空陣列上使用 。

// 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();

Console.WriteLine(
    String.IsNullOrEmpty(last) ? "[STRING IS NULL OR EMPTY]" : last);

/*
    This code produces the following output:

    [STRING IS NULL OR EMPTY]
*/
' 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()

MsgBox(IIf(String.IsNullOrEmpty(last), "[STRING IS NULL OR EMPTY]", last))

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

有時候,如果集合不包含任何元素,則的值 default(TSource) 不是您想要使用的預設值。 您可以視需要使用 方法來指定您想要使用之預設值的預設值,而不是檢查其結果,然後視需要加以變更。DefaultIfEmpty<TSource>(IQueryable<TSource>, TSource) 然後,呼叫 Last<TSource>(IQueryable<TSource>) 以取得最後一個專案。 如果月份的數值天數集合是空的,下列程式代碼範例會使用這兩種技術來取得預設值 1。 因為整數的預設值是 0,不會對應到當月的任何一天,所以預設值必須改為指定為 1。 第一個結果變數會在查詢完成之後檢查是否有不必要的預設值。 第二個結果變數是藉由呼叫 DefaultIfEmpty<TSource>(IQueryable<TSource>, TSource) 來指定預設值 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;
}
Console.WriteLine("The value of the lastDay1 variable is {0}", lastDay1);

// Setting the default value to 1 by using DefaultIfEmpty() in the query.
int lastDay2 = daysOfMonth.AsQueryable().DefaultIfEmpty(1).Last();
Console.WriteLine("The value of the lastDay2 variable is {0}", lastDay2);

/*
 This code produces the following output:

 The value of the lastDay1 variable is 1
 The value of the lastDay2 variable is 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
MsgBox(String.Format("The value of the lastDay1 variable is {0}", lastDay1))

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

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

備註

方法 LastOrDefault<TSource>(IQueryable<TSource>) 會產生 , MethodCallExpression 表示呼叫 LastOrDefault<TSource>(IQueryable<TSource>) 本身為建構的泛型方法。 然後,它會將 傳遞給 MethodCallExpressionExecute<TResult>(Expression) 參數之 屬性所Provider表示的方法IQueryProvidersource

執行表示呼叫 LastOrDefault<TSource>(IQueryable<TSource>) 的表達式樹狀結構所產生的查詢行為,取決於參數類型的實作 source 。 預期的行為是它會傳回 中的 source最後一個專案,如果 source 是空的,則傳回預設值。

方法 LastOrDefault 不提供指定預設值的方法。 如果您想要指定 以外的 default(TSource)預設值,請使用 DefaultIfEmpty<TSource>(IQueryable<TSource>, TSource) 範例 一節中所述的方法。

適用於