Ejemplo n.º 1
0
 public QueryParameter(string name, Type type, QueryType queryType)
 {
     this.name      = name;
     this.type      = type;
     this.queryType = queryType;
 }
Ejemplo n.º 2
0
 public VariableExpression(string name, Type type, QueryType queryType)
 {
     this.name      = name;
     this.queryType = queryType;
     this.type      = type;
 }
Ejemplo n.º 3
0
 public abstract string GetVariableDeclaration(QueryType type, bool suppressSize);
Ejemplo n.º 4
0
 public VariableDeclaration(string name, QueryType type, Expression expression)
 {
     this.name       = name;
     this.type       = type;
     this.expression = expression;
 }