Class SqlSelectFieldNode
- Namespace
- LfrlAnvil.Sql.Expressions
- Assembly
- LfrlAnvil.Sql.Core.dll
Represents an SQL syntax tree select node that defines a single expression selection.
public sealed class SqlSelectFieldNode : SqlSelectNode
- Inheritance
-
SqlSelectFieldNode
- Inherited Members
- Extension Methods
Properties
Alias
Optional alias of the selected Expression.
public string? Alias { get; }
Property Value
Expression
Selected expression.
public SqlExpressionNode Expression { get; }
Property Value
FieldName
Name of this selected field.
public string FieldName { get; }
Property Value
Remarks
Equal to Alias when it is not null, otherwise equal to Name of the underlying SqlDataFieldNodeExpression.