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;
    }