ReplacingExpressionVisitor Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| ReplacingExpressionVisitor(IDictionary<Expression,Expression>) | |
| ReplacingExpressionVisitor(IReadOnlyList<Expression>, IReadOnlyList<Expression>) |
Creates a new instance of the ReplacingExpressionVisitor class. |
ReplacingExpressionVisitor(IDictionary<Expression,Expression>)
public ReplacingExpressionVisitor(System.Collections.Generic.IDictionary<System.Linq.Expressions.Expression,System.Linq.Expressions.Expression> replacements);
new Microsoft.EntityFrameworkCore.Query.ReplacingExpressionVisitor : System.Collections.Generic.IDictionary<System.Linq.Expressions.Expression, System.Linq.Expressions.Expression> -> Microsoft.EntityFrameworkCore.Query.ReplacingExpressionVisitor
Public Sub New (replacements As IDictionary(Of Expression, Expression))
Parameters
- replacements
- IDictionary<Expression,Expression>
Applies to
ReplacingExpressionVisitor(IReadOnlyList<Expression>, IReadOnlyList<Expression>)
Creates a new instance of the ReplacingExpressionVisitor class.
public ReplacingExpressionVisitor(System.Collections.Generic.IReadOnlyList<System.Linq.Expressions.Expression> originals, System.Collections.Generic.IReadOnlyList<System.Linq.Expressions.Expression> replacements);
new Microsoft.EntityFrameworkCore.Query.ReplacingExpressionVisitor : System.Collections.Generic.IReadOnlyList<System.Linq.Expressions.Expression> * System.Collections.Generic.IReadOnlyList<System.Linq.Expressions.Expression> -> Microsoft.EntityFrameworkCore.Query.ReplacingExpressionVisitor
Public Sub New (originals As IReadOnlyList(Of Expression), replacements As IReadOnlyList(Of Expression))
Parameters
- originals
- IReadOnlyList<Expression>
A list of original expressions to replace.
- replacements
- IReadOnlyList<Expression>
A list of expressions to be used as replacements.