DbExpressionBuilder.SelectMany 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
SelectMany(DbExpression, Func<DbExpression,DbExpression>) |
建立新的 DbApplyExpression ,針對指定輸入集的每個元素評估指定的套用運算式一次,產生具有對應輸入並套用資料行的資料列集合。 不包含套用評估為空集的資料列。 接著會建立 , DbProjectExpression 從每個資料列選取套用資料行,產生套用結果的整體集合。 |
SelectMany<TSelector>(DbExpression, Func<DbExpression,DbExpression>, Func<DbExpression,DbExpression,TSelector>) |
建立新的 DbApplyExpression ,針對指定輸入集的每個元素評估指定的套用運算式一次,產生具有對應輸入並套用資料行的資料列集合。 不包含套用評估為空集的資料列。 接著會建立 , DbProjectExpression 以在每個資料列上選取指定的選取器,產生結果的整體集合。 |
SelectMany(DbExpression, Func<DbExpression,DbExpression>)
建立新的 DbApplyExpression ,針對指定輸入集的每個元素評估指定的套用運算式一次,產生具有對應輸入並套用資料行的資料列集合。 不包含套用評估為空集的資料列。 接著會建立 , DbProjectExpression 從每個資料列選取套用資料行,產生套用結果的整體集合。
public static System.Data.Entity.Core.Common.CommandTrees.DbProjectExpression SelectMany (this System.Data.Entity.Core.Common.CommandTrees.DbExpression source, Func<System.Data.Entity.Core.Common.CommandTrees.DbExpression,System.Data.Entity.Core.Common.CommandTrees.DbExpression> apply);
static member SelectMany : System.Data.Entity.Core.Common.CommandTrees.DbExpression * Func<System.Data.Entity.Core.Common.CommandTrees.DbExpression, System.Data.Entity.Core.Common.CommandTrees.DbExpression> -> System.Data.Entity.Core.Common.CommandTrees.DbProjectExpression
<Extension()>
Public Function SelectMany (source As DbExpression, apply As Func(Of DbExpression, DbExpression)) As DbProjectExpression
參數
- source
- DbExpression
指定輸入集的 DbExpression。
- apply
- Func<DbExpression,DbExpression>
方法,表示要針對輸入集中每個成員進行一次評估的邏輯。
傳回
新的 DbProjectExpression,這會從具有指定之輸入及套用繫結與 CrossApply 之 DbExpressionKind 的新 DbApplyExpression 中選取套用資料行。
例外狀況
apply 所產生的運算式為 null。
apply 所產生的運算式沒有集合類型。
適用於
SelectMany<TSelector>(DbExpression, Func<DbExpression,DbExpression>, Func<DbExpression,DbExpression,TSelector>)
建立新的 DbApplyExpression ,針對指定輸入集的每個元素評估指定的套用運算式一次,產生具有對應輸入並套用資料行的資料列集合。 不包含套用評估為空集的資料列。 接著會建立 , DbProjectExpression 以在每個資料列上選取指定的選取器,產生結果的整體集合。
public static System.Data.Entity.Core.Common.CommandTrees.DbProjectExpression SelectMany<TSelector> (this System.Data.Entity.Core.Common.CommandTrees.DbExpression source, Func<System.Data.Entity.Core.Common.CommandTrees.DbExpression,System.Data.Entity.Core.Common.CommandTrees.DbExpression> apply, Func<System.Data.Entity.Core.Common.CommandTrees.DbExpression,System.Data.Entity.Core.Common.CommandTrees.DbExpression,TSelector> selector);
static member SelectMany : System.Data.Entity.Core.Common.CommandTrees.DbExpression * Func<System.Data.Entity.Core.Common.CommandTrees.DbExpression, System.Data.Entity.Core.Common.CommandTrees.DbExpression> * Func<System.Data.Entity.Core.Common.CommandTrees.DbExpression, System.Data.Entity.Core.Common.CommandTrees.DbExpression, 'Selector> -> System.Data.Entity.Core.Common.CommandTrees.DbProjectExpression
<Extension()>
Public Function SelectMany(Of TSelector) (source As DbExpression, apply As Func(Of DbExpression, DbExpression), selector As Func(Of DbExpression, DbExpression, TSelector)) As DbProjectExpression
類型參數
- TSelector
選取器的方法結果類型。
參數
- source
- DbExpression
指定輸入集的 DbExpression。
- apply
- Func<DbExpression,DbExpression>
方法,表示要針對輸入集中每個成員進行一次評估的邏輯。
- selector
- Func<DbExpression,DbExpression,TSelector>
方法,指定結果集項目要如何依據給定輸入集和適用集項目來衍生。 這個方法必須產生與 SelectMany 相容的型別實例,而且可以解析為 DbExpression 。 TSelector 的相容性需求詳述於<備註>。
傳回
新的 DbProjectExpression,這會從具有指定之輸入及套用繫結與 CrossApply 之 DbExpressionKind 的新 DbApplyExpression 中選取指定之選取器的結果。
例外狀況
選取器的結果在轉換成 DbExpression 時為 Null。
apply 所產生的運算式沒有集合類型。 沒有集合型別。