System\Data\Common\CommandTrees\ExpressionBuilder\DbExpressionBuilder.cs (15)
374/// Creates a new <see cref="DbJoinExpression"/> that joins the sets specified by the left and right
390public static DbJoinExpression InnerJoin(this DbExpressionBinding left, DbExpressionBinding right, DbExpression joinCondition)
397/// Creates a new <see cref="DbJoinExpression"/> that joins the sets specified by the left and right
413public static DbJoinExpression LeftOuterJoin(this DbExpressionBinding left, DbExpressionBinding right, DbExpression joinCondition)
420/// Creates a new <see cref="DbJoinExpression"/> that joins the sets specified by the left and right
436public static DbJoinExpression FullOuterJoin(this DbExpressionBinding left, DbExpressionBinding right, DbExpression joinCondition)
2038/// Creates a new <see cref="DbJoinExpression"/> that joins the sets specified by the left and right expressions,
2064public static DbJoinExpression FullOuterJoin(this DbExpression left, DbExpression right, Func<DbExpression, DbExpression, DbExpression> joinCondition)
2072/// Creates a new <see cref="DbJoinExpression"/> that joins the sets specified by the left and right expressions,
2098public static DbJoinExpression InnerJoin(this DbExpression left, DbExpression right, Func<DbExpression, DbExpression, DbExpression> joinCondition)
2106/// Creates a new <see cref="DbJoinExpression"/> that joins the sets specified by the left and right expressions,
2132public static DbJoinExpression LeftOuterJoin(this DbExpression left, DbExpression right, Func<DbExpression, DbExpression, DbExpression> joinCondition)
2140/// Creates a new <see cref="DbJoinExpression"/> that joins the sets specified by the outer and inner expressions,
2163public static DbJoinExpression Join(this DbExpression outer, DbExpression inner, Func<DbExpression, DbExpression> outerKey, Func<DbExpression, DbExpression> innerKey)
2225DbJoinExpression joinExpression = DbExpressionBuilder.Join(outer, inner, outerKey, innerKey);