Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CouchLinqQuery&lt;T&gt;" /> class.
 /// </summary>
 /// <param name="provider">The provider.</param>
 public CouchLinqQuery(BigDQueryProvider provider)
 {
     this.expression = Expression.Constant(this);
     this.provider   = provider;
 }
Beispiel #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CouchLinqQuery&lt;T&gt;" /> class.
 /// </summary>
 /// <param name="expression">The expression.</param>
 /// <param name="provider">The provider.</param>
 public CouchLinqQuery(Expression expression, BigDQueryProvider provider)
 {
     this.expression = expression;
     this.provider   = provider;
 }