Inheritance: Descriptor
Beispiel #1
0
 /// <summary>
 /// Sets the method name and column name of this instance with the supplied method name and 
 /// column name.
 /// </summary>
 /// <param name="op">The supplied method name.</param>
 /// <param name="column">The supplied column name.</param>
 public SearchAttribute(string op, OperatorType operatorType, string column, ParameterType parameterType = null)
 {
     Operator = op;
     OperatorType = operatorType;
     Column = column;
     ParameterType = parameterType;
 }