CreateParameter() private method

private CreateParameter ( ) : System.Linq.Expressions.ParameterExpression
return System.Linq.Expressions.ParameterExpression
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 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();
        }