Beispiel #1
0
 /// <summary>
 /// Writes the operator that corresponds to the given expression type.
 /// </summary>
 /// <param name="expressionType">Expression type representing the operator to render..</param>
 /// <returns>The <see cref="JavascriptWriter"/>, allowing a fluent style.</returns>
 public JavascriptWriter WriteOperator(ExpressionType expressionType)
 {
     JsOperationHelper.WriteOperator(this.result, expressionType);
     return(this);
 }