LambdaNode Class

Describes a node representing an Any/All query.

Inheritance Hierarchy

System.Object
  Microsoft.Data.OData.ODataAnnotatable
    Microsoft.Data.OData.Query.SemanticAst.QueryNode
      Microsoft.Data.OData.Query.SemanticAst.SingleValueNode
        Microsoft.Data.OData.Query.SemanticAst.LambdaNode
          Microsoft.Data.OData.Query.SemanticAst.AllNode
          Microsoft.Data.OData.Query.SemanticAst.AnyNode

Namespace:  Microsoft.Data.OData.Query.SemanticAst
Assembly:  Microsoft.Data.OData (in Microsoft.Data.OData.dll)

Syntax

'Declaration
Public MustInherit Class LambdaNode _
    Inherits SingleValueNode
'Usage
Dim instance As LambdaNode
public abstract class LambdaNode : SingleValueNode
public ref class LambdaNode abstract : public SingleValueNode
[<AbstractClassAttribute>]
type LambdaNode =  
    class 
        inherit SingleValueNode 
    end
public abstract class LambdaNode extends SingleValueNode

The LambdaNode type exposes the following members.

Constructors

  Name Description
Protected method LambdaNode(Collection<RangeVariable>) Initializes a new instance of the LambdaNode class.
Protected method LambdaNode(Collection<RangeVariable>, RangeVariable) Create a LambdaNode

Top

Properties

  Name Description
Public property Body Gets or sets the associated Boolean expression.
Public property CurrentRangeVariable Gets the newest range variable added for by this Any or All.
Public property Kind Gets the kind of this node. (Inherited from SingleValueNode.)
Public property RangeVariables Gets the collection of range variables in scope for this Any or All.
Public property Source Gets or sets the parent entity set or navigation property.
Public property TypeReference Gets the type of the single value this node represents. (Inherited from SingleValueNode.)

Top

Methods

  Name Description
Public method Accept<T> Accept a QueryNodeVisitor<T> that walks a tree of QueryNodes. (Inherited from QueryNode.)
Public method Equals (Inherited from Object.)
Protected method Finalize (Inherited from Object.)
Public method GetAnnotation<T> Gets or sets the annotation by type. (Inherited from ODataAnnotatable.)
Public method GetHashCode (Inherited from Object.)
Public method GetType (Inherited from Object.)
Protected method MemberwiseClone (Inherited from Object.)
Public method SetAnnotation<T> Sets an annotation of type T. (Inherited from ODataAnnotatable.)
Public method ToString (Inherited from Object.)

Top

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

Microsoft.Data.OData.Query.SemanticAst Namespace