示例#1
0
        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
示例#2
0
            }             // func ParseTable

            private PpsDataJoinType ParseJoinOperator()
            {
                ParseWhiteSpace();
                var r = PpsDataJoinStatement.ParseJoinType(Cur, false);

                if (r != PpsDataJoinType.None)
                {
                    pos++;
                }
                return(r);
            }             // func ParseJoinOperator