From de8b8094fb4125528ba6aea3dc6708d199e4b885 Mon Sep 17 00:00:00 2001 From: Mark Cilia Vincenti Date: Tue, 15 Oct 2024 08:43:35 +0200 Subject: [PATCH] Revert PredicateOperator --- .../src/Volo.Abp.Core/System/Linq/PredicateOperator.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/framework/src/Volo.Abp.Core/System/Linq/PredicateOperator.cs b/framework/src/Volo.Abp.Core/System/Linq/PredicateOperator.cs index 0858d84ce4..df66790ca2 100644 --- a/framework/src/Volo.Abp.Core/System/Linq/PredicateOperator.cs +++ b/framework/src/Volo.Abp.Core/System/Linq/PredicateOperator.cs @@ -213,12 +213,12 @@ public class ExpressionStarter } #endif -#if !(NET35 || WINDOWS_APP || NETSTANDARD || NET5_0 || PORTABLE || PORTABLE40 || UAP) - /// - public Func Compile(DebugInfoGenerator debugInfoGenerator) { return Predicate.Compile(debugInfoGenerator); } +#if !(NET35 || WINDOWS_APP || NETSTANDARD || PORTABLE || PORTABLE40 || UAP) + /// + public Func Compile(DebugInfoGenerator debugInfoGenerator) { return Predicate.Compile(debugInfoGenerator); } - /// - public Expression> Update(Expression body, IEnumerable parameters) { return Predicate.Update(body, parameters); } + /// + public Expression> Update(Expression body, IEnumerable parameters) { return Predicate.Update(body, parameters); } #endif #endregion