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