public PpsViewJoinDefinition(PpsViewDefinition view, string alias, PpsDataJoinType type) { this.view = view ?? throw new ArgumentNullException(nameof(view)); this.alias = alias ?? String.Empty; this.type = type; Key = new PpsDataJoinStatement[0]; } // ctor
} // func ParseTable private PpsDataJoinType ParseJoinOperator() { ParseWhiteSpace(); var r = PpsDataJoinStatement.ParseJoinType(Cur, false); if (r != PpsDataJoinType.None) { pos++; } return(r); } // func ParseJoinOperator