DbExpressionBuilder.CrossJoin(IEnumerable<DbExpressionBinding>) 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.
Creates a new DbCrossJoinExpression that unconditionally joins the sets specified by the list of input expression bindings.
public static System.Data.Entity.Core.Common.CommandTrees.DbCrossJoinExpression CrossJoin (System.Collections.Generic.IEnumerable<System.Data.Entity.Core.Common.CommandTrees.DbExpressionBinding> inputs);
static member CrossJoin : seq<System.Data.Entity.Core.Common.CommandTrees.DbExpressionBinding> -> System.Data.Entity.Core.Common.CommandTrees.DbCrossJoinExpression
Public Function CrossJoin (inputs As IEnumerable(Of DbExpressionBinding)) As DbCrossJoinExpression
Parameters
- inputs
- IEnumerable<DbExpressionBinding>
A list of expression bindings that specifies the input sets.
Returns
A new DbCrossJoinExpression, with an DbExpressionKind of CrossJoin, that represents the unconditional join of the input sets.
Exceptions
inputs is null or contains null element.
inputs contains fewer than 2 expression bindings.
Applies to
Entity Framework