Click or drag to resize

ExpressionParameterReplacerReplaceParameter Method

Replaces all occurences of one parameter with a different parameter.

Namespace:  MongoDB.Driver.Linq
Assembly:  MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.8.0+cc573f3e1f48f39162b4b680e921a623e127e8fa
Syntax
public static Expression ReplaceParameter(
	Expression node,
	ParameterExpression fromParameter,
	Expression toExpression
)

Parameters

node
Type: System.Linq.ExpressionsExpression
The expression containing the parameter that should be replaced.
fromParameter
Type: System.Linq.ExpressionsParameterExpression
The from parameter.
toExpression
Type: System.Linq.ExpressionsExpression
The expression that replaces the parameter.

Return Value

Type: Expression
The expression with all occurrences of the parameter replaced.
See Also