DataDictionary.Interpreter.Call.GetParameterAssociation C# (CSharp) Method

GetParameterAssociation() private method

Provides the parameter association according to the icallable provided. If the call is statically determined, take the cached association
private GetParameterAssociation ( ICallable callable ) : Expression>.Dictionary
callable ICallable
return Expression>.Dictionary
        private Dictionary<Parameter, Expression> GetParameterAssociation(ICallable callable)
        {
            Dictionary<Parameter, Expression> retVal = ParameterAssociation;

            if (retVal == null)
            {
                retVal = CreateParameterAssociation(callable);
            }

            return retVal;
        }