Remotion.Linq.SqlBackend.SqlGeneration.BinaryExpressionTextGenerator.GetRegisteredOperatorString C# (CSharp) 메소드

GetRegisteredOperatorString() 개인적인 메소드

private GetRegisteredOperatorString ( ExpressionType nodeType ) : string
nodeType ExpressionType
리턴 string
    private string GetRegisteredOperatorString (ExpressionType nodeType)
    {
        string operatorString;
        if (!_simpleOperatorRegistry.TryGetValue (nodeType, out operatorString))
          throw new NotSupportedException ("The binary operator '" + nodeType + "' is not supported.");
        return operatorString;
    }