DefaultExpressionVisitor.OnExpressionReplaced 方法
[本页针对的是实体框架版本 6。最新版本以“实体框架”NuGet 包的形式提供。有关实体框架的更多信息,请参见 msdn.com/data/ef。]
用表达式访问者的新表达式替换旧表达式。
命名空间: System.Data.Entity.Core.Common.CommandTrees
程序集: EntityFramework(在 EntityFramework.dll 中)
语法
声明
Protected Overridable Sub OnExpressionReplaced ( _
oldExpression As DbExpression, _
newExpression As DbExpression _
)
用法
Dim oldExpression As DbExpression
Dim newExpression As DbExpression
Me.OnExpressionReplaced(oldExpression, _
newExpression)
protected virtual void OnExpressionReplaced(
DbExpression oldExpression,
DbExpression newExpression
)
protected:
virtual void OnExpressionReplaced(
DbExpression^ oldExpression,
DbExpression^ newExpression
)
abstract OnExpressionReplaced :
oldExpression:DbExpression *
newExpression:DbExpression -> unit
override OnExpressionReplaced :
oldExpression:DbExpression *
newExpression:DbExpression -> unit
protected function OnExpressionReplaced(
oldExpression : DbExpression,
newExpression : DbExpression
)
参数
- oldExpression
类型:System.Data.Entity.Core.Common.CommandTrees.DbExpression
旧表达式。
- newExpression
类型:System.Data.Entity.Core.Common.CommandTrees.DbExpression
新表达式。