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
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.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Entity Framework