/// <summary>
 /// This constructor is called by the client to create the data source.
 /// </summary>
 public InjectionDbSet(BlindSqlInjection injection, QualifiedName table)
 {
     Provider   = new InjectionQueryProvider(injection, table);
     Expression = Expression.Constant(this);
     Injection  = injection;
     Table      = table;
     Operators  = new Collection <ResultOperatorBase>();
 }
        /// <summary>
        /// This constructor is called by Provider.CreateQuery().
        /// </summary>
        /// <param name="expression"></param>
        public InjectionDbSet(InjectionQueryProvider provider, Expression expression, BlindSqlInjection injection, QualifiedName table, ICollection <ResultOperatorBase> operators)
        {
            if (provider == null)
            {
                throw new ArgumentNullException("provider");
            }

            if (expression == null)
            {
                throw new ArgumentNullException("expression");
            }

            if (!typeof(IQueryable <TData>).IsAssignableFrom(expression.Type))
            {
                throw new ArgumentOutOfRangeException("expression");
            }

            Provider   = provider;
            Expression = expression;
            Injection  = injection;
            Table      = table;
            Operators  = operators;
        }