Remotion.Linq.SqlBackend.SqlGeneration.BinaryExpressionTextGenerator.GetRegisteredOperatorString C# (CSharp) Method

GetRegisteredOperatorString() private method

private GetRegisteredOperatorString ( ExpressionType nodeType ) : string
nodeType ExpressionType
return 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;
    }