DbExpressionBuilder.OuterApply 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
OuterApply(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 have an apply column value of null. |
OuterApply(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 have an apply column value of null. |
OuterApply(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 have an apply column value of null.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public static System.Data.Entity.Core.Common.CommandTrees.DbApplyExpression OuterApply (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 OuterApply : 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 OuterApply (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 OuterApply.
- 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
OuterApply(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 have an apply column value of null.
public static System.Data.Entity.Core.Common.CommandTrees.DbApplyExpression OuterApply (this System.Data.Entity.Core.Common.CommandTrees.DbExpressionBinding input, System.Data.Entity.Core.Common.CommandTrees.DbExpressionBinding apply);
static member OuterApply : System.Data.Entity.Core.Common.CommandTrees.DbExpressionBinding * System.Data.Entity.Core.Common.CommandTrees.DbExpressionBinding -> System.Data.Entity.Core.Common.CommandTrees.DbApplyExpression
<Extension()>
Public Function OuterApply (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 OuterApply.
Exceptions
input or apply is null.
Applies to
Entity Framework