Remotion.Linq.SqlBackend.SqlGeneration.BinaryExpressionTextGenerator.GetRegisteredOperatorString C# (CSharp) Méthode

GetRegisteredOperatorString() private méthode

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