Remotion.Linq.SqlBackend.SqlStatementModel.SqlGroupingSelectExpression.ToString C# (CSharp) Méthode

ToString() public méthode

public ToString ( ) : string
Résultat string
    public override string ToString ()
    {
      return String.Format (
          "GROUPING (KEY: {0}, ELEMENT: {1}, AGGREGATIONS: ({2}))", 
          FormattingExpressionTreeVisitor.Format (KeyExpression), 
          FormattingExpressionTreeVisitor.Format (ElementExpression),
          string.Join (", ", AggregationExpressions.Select (FormattingExpressionTreeVisitor.Format)));
    }
  }