Class From
- Namespace
- flx.SILQ.Statements
- Assembly
- flx.SILQ.dll
Represents a "from" statement in the SILQ language. This statement is used to specify the source of data for a query.
public record From : Statement, IEquatable<Statement>, IEquatable<From>
- Inheritance
-
From
- Implements
- Inherited Members
Constructors
From(Variable)
Represents a "from" statement in the SILQ language. This statement is used to specify the source of data for a query.
public From(Variable Property)
Parameters
PropertyVariable
Properties
Property
public Variable Property { get; init; }
Property Value
Methods
Accept(IVisitor)
Accepts a visitor to process this from statement.
public override void Accept(IVisitor visitor)
Parameters
visitorIVisitorThe visitor that will process the from statement.