共用方式為


QueryBuilder.LeftOuterJoin<'Outer,'Q,'Inner,'Key,'Result> 方法 (F#)

兩組選取的值與相關聯的查詢運算子會根據對應索引鍵,並將結果分組。如果任何群組是空的會改用具有單一預設值的群組。一般用法是 leftOuterJoin (for y in elements2 -> key1 = key2) into group。

Namespace/Module Path:Microsoft.FSharp.Linq

組件:FSharp.Core (在 FSharp.Core.dll 中)

// Signature:
member this.LeftOuterJoin : QuerySource<'Outer,'Q> * QuerySource<'Inner,'Q> * ('Outer -> 'Key) * ('Inner -> 'Key) * ('Outer -> seq<'Inner> -> 'Result) -> QuerySource<'Result,'Q>

// Usage:
queryBuilder.LeftOuterJoin (outerSource, innerSource, outerKeySelector, innerKeySelector, resultSelector)

參數

  • outerSource
    型別: QuerySource<'Outer,'Q>

    外部查詢。

  • innerSource
    型別: QuerySource<'Inner,'Q>

    內部查詢。

  • outerKeySelector
    型別:「不足- > "鍵

    選取關聯索引鍵的函式從外部查詢。

  • innerKeySelector
    型別:「內部- > "鍵

    選取關聯索引鍵的函式從內部查詢。

  • resultSelector
    型別:「不足- > 順序< " Inner> - > ' Result

    選取結果項目的函式。

傳回值

查詢的結果。

備註

如需詳細資訊和範例,請參閱 查詢運算式 (F#)

平台

Windows 8 中, Windows 7, Windows Server 2012 上, Windows Server 2008 R2

版本資訊

F# 核心程式庫版本

支援版本:4.0,可攜式執行檔 (PE)。

請參閱

參考

Linq.QueryBuilder 類別 (F#)

Microsoft.FSharp.Linq 命名空間 (F#)

查詢運算式 (F#)