Skip to content

Commit

Permalink
Reverted overload to private instead of protected.
Browse files Browse the repository at this point in the history
  • Loading branch information
joakimriedel committed Dec 9, 2020
1 parent b49e3b5 commit 0313b40
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,14 +81,7 @@ public virtual Expression ExtractParameters([NotNull] Expression expression)
return ExtractParameters(expression, clearEvaluatedValues: true);
}

/// <summary>
/// This is an internal API that supports the Entity Framework Core infrastructure and not subject to
/// the same compatibility standards as public APIs. It may be changed or removed without notice in
/// any release. You should only use it directly in your code with extreme caution and knowing that
/// doing so can result in application failures when updating to a new Entity Framework Core release.
/// </summary>
protected virtual Expression ExtractParameters([NotNull] Expression expression,
bool clearEvaluatedValues = false)
private Expression ExtractParameters([NotNull] Expression expression, bool clearEvaluatedValues = false)
{
var oldEvaluatableExpressions = _evaluatableExpressions;
_evaluatableExpressions = _evaluatableExpressionFindingExpressionVisitor.Find(expression);
Expand Down

0 comments on commit 0313b40

Please sign in to comment.