Exemplo n.º 1
0
 public SqlLiteral(string sql, RawToken token)
     : base(sql, ImmutableArray <SqlNode> .Empty)
 {
     this.Token = token.WithParent(this);
 }
Exemplo n.º 2
0
 public QuotedIdentifier(string sql, RawToken identifier)
     : base(sql, ImmutableArray <SqlNode> .Empty)
 {
     this.Identifier = identifier.WithParent(this);
 }