DbExpressionBuilder.CrossApply 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
创建一个新的 DbApplyExpression,它为每个给定输入集元素计算一次指定的 apply
表达式,并生成具有相应 input 和 apply 列的行集合。
重载
CrossApply(DbExpression, Func<DbExpression,KeyValuePair<String,DbExpression>>) |
创建一个新的 DbApplyExpression,它为每个给定输入集元素计算一次指定的 |
CrossApply(DbExpressionBinding, DbExpressionBinding) |
创建一个新的 DbApplyExpression,它为每个给定输入集元素计算一次指定的 |
CrossApply(DbExpression, Func<DbExpression,KeyValuePair<String,DbExpression>>)
创建一个新的 DbApplyExpression,它为每个给定输入集元素计算一次指定的 apply
表达式,并生成具有相应 input 和 apply 列的行集合。 不包括 apply
计算结果为空集的行。
public:
[System::Runtime::CompilerServices::Extension]
static System::Data::Common::CommandTrees::DbApplyExpression ^ CrossApply(System::Data::Common::CommandTrees::DbExpression ^ source, Func<System::Data::Common::CommandTrees::DbExpression ^, System::Collections::Generic::KeyValuePair<System::String ^, System::Data::Common::CommandTrees::DbExpression ^>> ^ apply);
public static System.Data.Common.CommandTrees.DbApplyExpression CrossApply (this System.Data.Common.CommandTrees.DbExpression source, Func<System.Data.Common.CommandTrees.DbExpression,System.Collections.Generic.KeyValuePair<string,System.Data.Common.CommandTrees.DbExpression>> apply);
static member CrossApply : System.Data.Common.CommandTrees.DbExpression * Func<System.Data.Common.CommandTrees.DbExpression, System.Collections.Generic.KeyValuePair<string, System.Data.Common.CommandTrees.DbExpression>> -> System.Data.Common.CommandTrees.DbApplyExpression
<Extension()>
Public Function CrossApply (source As DbExpression, apply As Func(Of DbExpression, KeyValuePair(Of String, DbExpression))) As DbApplyExpression
参数
- source
- DbExpression
指定输入集的 DbExpression。
- apply
- Func<DbExpression,KeyValuePair<String,DbExpression>>
一个方法,指定要针对每个输入集成员计算一次的逻辑。
返回
使用指定输入、应用绑定和 CrossApply DbExpressionKind 的新 DbApplyExpression。
例外
适用于
CrossApply(DbExpressionBinding, DbExpressionBinding)
创建一个新的 DbApplyExpression,它为每个给定输入集元素计算一次指定的 apply
表达式,并生成具有相应 input 和 apply 列的行集合。 不包括 apply
计算结果为空集的行。
public:
[System::Runtime::CompilerServices::Extension]
static System::Data::Common::CommandTrees::DbApplyExpression ^ CrossApply(System::Data::Common::CommandTrees::DbExpressionBinding ^ input, System::Data::Common::CommandTrees::DbExpressionBinding ^ apply);
public static System.Data.Common.CommandTrees.DbApplyExpression CrossApply (this System.Data.Common.CommandTrees.DbExpressionBinding input, System.Data.Common.CommandTrees.DbExpressionBinding apply);
static member CrossApply : System.Data.Common.CommandTrees.DbExpressionBinding * System.Data.Common.CommandTrees.DbExpressionBinding -> System.Data.Common.CommandTrees.DbApplyExpression
<Extension()>
Public Function CrossApply (input As DbExpressionBinding, apply As DbExpressionBinding) As DbApplyExpression
参数
- input
- DbExpressionBinding
指定输入集的 DbExpressionBinding。
- apply
- DbExpressionBinding
一个 DbExpressionBinding,指定要针对每个输入集成员计算一次的逻辑。
返回
使用指定输入、应用绑定和 CrossApply DbExpressionKind 的新 DbApplyExpression。
例外
input
或 apply
为 null。