DbExpressionBuilder.CrossApply Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CrossApply(DbExpression, Func<DbExpression,KeyValuePair<String,DbExpression>>) |
Creates a new DbApplyExpression that evaluates the given apply expression once for each element of a given input set, producing a collection of rows with corresponding input and apply columns. Rows for which apply evaluates to an empty set are not included. |
CrossApply(DbExpressionBinding, DbExpressionBinding) |
Creates a new DbApplyExpression that evaluates the given apply expression once for each element of a given input set, producing a collection of rows with corresponding input and apply columns. Rows for which apply evaluates to an empty set are not included. |
CrossApply(DbExpression, Func<DbExpression,KeyValuePair<String,DbExpression>>)
Creates a new DbApplyExpression that evaluates the given apply expression once for each element of a given input set, producing a collection of rows with corresponding input and apply columns. Rows for which apply evaluates to an empty set are not included.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public static System.Data.Entity.Core.Common.CommandTrees.DbApplyExpression CrossApply (this System.Data.Entity.Core.Common.CommandTrees.DbExpression source, Func<System.Data.Entity.Core.Common.CommandTrees.DbExpression,System.Collections.Generic.KeyValuePair<string,System.Data.Entity.Core.Common.CommandTrees.DbExpression>> apply);
static member CrossApply : System.Data.Entity.Core.Common.CommandTrees.DbExpression * Func<System.Data.Entity.Core.Common.CommandTrees.DbExpression, System.Collections.Generic.KeyValuePair<string, System.Data.Entity.Core.Common.CommandTrees.DbExpression>> -> System.Data.Entity.Core.Common.CommandTrees.DbApplyExpression
<Extension()>
Public Function CrossApply (source As DbExpression, apply As Func(Of DbExpression, KeyValuePair(Of String, DbExpression))) As DbApplyExpression
Parameters
- source
- DbExpression
A DbExpression that specifies the input set.
- apply
- Func<DbExpression,KeyValuePair<String,DbExpression>>
A method that specifies the logic to evaluate once for each member of the input set.
Returns
An new DbApplyExpression with the specified input and apply bindings and an DbExpressionKind of CrossApply.
- Attributes
Exceptions
The result of apply contains a name or expression that is null.
The result of apply contains a name or expression that is not valid in an expression binding.
Applies to
CrossApply(DbExpressionBinding, DbExpressionBinding)
Creates a new DbApplyExpression that evaluates the given apply expression once for each element of a given input set, producing a collection of rows with corresponding input and apply columns. Rows for which apply evaluates to an empty set are not included.
public static System.Data.Entity.Core.Common.CommandTrees.DbApplyExpression CrossApply (this System.Data.Entity.Core.Common.CommandTrees.DbExpressionBinding input, System.Data.Entity.Core.Common.CommandTrees.DbExpressionBinding apply);
static member CrossApply : System.Data.Entity.Core.Common.CommandTrees.DbExpressionBinding * System.Data.Entity.Core.Common.CommandTrees.DbExpressionBinding -> System.Data.Entity.Core.Common.CommandTrees.DbApplyExpression
<Extension()>
Public Function CrossApply (input As DbExpressionBinding, apply As DbExpressionBinding) As DbApplyExpression
Parameters
- input
- DbExpressionBinding
An DbExpressionBinding that specifies the input set.
- apply
- DbExpressionBinding
An DbExpressionBinding that specifies logic to evaluate once for each member of the input set.
Returns
An new DbApplyExpression with the specified input and apply bindings and an DbExpressionKind of CrossApply.
Exceptions
input or apply is null.
Applies to
Entity Framework