Table of Contents

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

Property Variable

Properties

Property

public Variable Property { get; init; }

Property Value

Variable

Methods

Accept(IVisitor)

Accepts a visitor to process this from statement.

public override void Accept(IVisitor visitor)

Parameters

visitor IVisitor

The visitor that will process the from statement.