DbExpressionBinding Class
Describes a binding for an expression. Conceptually similar to a foreach loop in C#. The DbExpression property defines the collection being iterated over, while the Var property provides a means to reference the current element of the collection during the iteration. DbExpressionBinding is used to describe the set arguments to relational expressions such as DbFilterExpression, DbProjectExpression and DbJoinExpression.
Assembly: EntityFramework (in EntityFramework.dll)
Name | Description | |
---|---|---|
![]() | Expression | Gets the DbExpression that defines the input set. |
![]() | Variable | Gets the DbVariableReferenceExpression that references the element variable. |
![]() | VariableName | Gets the name assigned to the element variable. |
![]() | VariableType | Gets the type metadata of the element variable. |
Name | Description | |
---|---|---|
![]() | Equals(Object) | (Inherited from Object.) |
![]() | GetHashCode() | (Inherited from Object.) |
![]() | GetType() | (Inherited from Object.) |
![]() | ToString() | (Inherited from Object.) |
Name | Description | |
---|---|---|
![]() | All(DbExpression) | Overloaded. Creates a new DbQuantifierExpression that determines whether the given predicate holds for all elements of the input set.(Defined by DbExpressionBuilder.) |
![]() | Any(DbExpression) | Overloaded. Creates a new DbQuantifierExpression that determines whether the given predicate holds for any element of the input set.(Defined by DbExpressionBuilder.) |
![]() | CrossApply(DbExpressionBinding) | Overloaded. 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.(Defined by DbExpressionBuilder.) |
![]() | Filter(DbExpression) | Creates a new DbFilterExpression that filters the elements in the given input set using the specified predicate.(Defined by DbExpressionBuilder.) |
![]() | FullOuterJoin(DbExpressionBinding, DbExpression) | Overloaded. Creates a new DbJoinExpression that joins the sets specified by the left and right expression bindings, on the specified join condition, using FullOuterJoin as the DbExpressionKind.(Defined by DbExpressionBuilder.) |
![]() | InnerJoin(DbExpressionBinding, DbExpression) | Overloaded. Creates a new DbJoinExpression that joins the sets specified by the left and right expressions, on the specified join condition, using InnerJoin as the DbExpressionKind.(Defined by DbExpressionBuilder.) |
![]() | LeftOuterJoin(DbExpressionBinding, DbExpression) | Overloaded. Creates a new DbJoinExpression that joins the sets specified by the left and rightexpression bindings, on the specified join condition, using LeftOuterJoin as the DbExpressionKind.(Defined by DbExpressionBuilder.) |
![]() | OuterApply(DbExpressionBinding) | Overloaded. 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.(Defined by DbExpressionBuilder.) |
![]() | Project(DbExpression) | Creates a new DbProjectExpression that projects the specified expression over the given input set.(Defined by DbExpressionBuilder.) |
![]() | Skip(IEnumerable<DbSortClause>, DbExpression) | Overloaded. Creates a new DbSkipExpression that sorts the given input set by the given sort specifications before skipping the specified number of elements.(Defined by DbExpressionBuilder.) |
![]() | Sort(IEnumerable<DbSortClause>) | Creates a new DbSortExpression that sorts the given input set by the specified sort specifications.(Defined by DbExpressionBuilder.) |
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.