protected override Expression VisitDynamic(System.Linq.Expressions.DynamicExpression node) { throw new NotSupportedException($"Node type {node.GetType().Name} is not supported."); }
/// <summary> /// Visits the children of <see cref="System.Linq.Expressions.DynamicExpression"/>. /// </summary> /// <param name="node">The expression to visit.</param> /// <returns>The modified expression, if it or any subexpression was modified; otherwise, /// returns the original expression.</returns> protected override Expression VisitDynamic(System.Linq.Expressions.DynamicExpression node) { throw new NotSupportedException(string.Format(Resources.EX_PROCESS_NODE_NOT_SUPPORT, node.GetType().Name)); }