Ejemplo n.º 1
0
        public AnyAllFilter(CollectionElementToken ce)
        {
            if (ce.CollectionElementType.ToString().StartsWith("Element"))
            {
                throw new ArgumentException("ce should be non-Free Any or All");
            }

            this.Token     = ce;
            this.Parameter = ce.CreateParameter();
        }
Ejemplo n.º 2
0
        public List <CollectionElementToken> Multiplications()
        {
            HashSet <QueryToken> allTokens = new HashSet <QueryToken>(this.AllTokens());

            return(CollectionElementToken.GetElements(allTokens));
        }
Ejemplo n.º 3
0
        public AnyAllFilter(CollectionElementToken ce)
        {
            if (ce.CollectionElementType.ToString().StartsWith("Element"))
                throw new ArgumentException("ce should be non-Free Any or All");

            this.Token = ce;
            this.Parameter = ce.CreateParameter();
        }