Habanero.Base.FunctionQueryField.FunctionQueryField C# (CSharp) Method

FunctionQueryField() public method

Abstract constructor: you should only be interested if you're deriving from this class
Will throw argument exception if the function name is not supplied
public FunctionQueryField ( string functionName ) : System
functionName string Name of the function to call in the output SQL
return System
        public FunctionQueryField(string functionName, params object[] parameters): base(GetPropertyNameFor(functionName), GetFieldNameFrom(parameters), null)
        {
            if (string.IsNullOrEmpty(functionName)) throw new ArgumentException("FunctionQueryField: function name not supplied", "functionName");
            _functionName = functionName;
            _parameters = parameters;
        }