Mark Cilia Vincenti
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
5 additions and
5 deletions
-
framework/src/Volo.Abp.Core/System/Linq/PredicateOperator.cs
|
|
|
@ -213,12 +213,12 @@ public class ExpressionStarter<T> |
|
|
|
} |
|
|
|
#endif
|
|
|
|
|
|
|
|
#if !(NET35 || WINDOWS_APP || NETSTANDARD || NET5_0 || PORTABLE || PORTABLE40 || UAP)
|
|
|
|
/// <summary></summary>
|
|
|
|
public Func<T, bool> Compile(DebugInfoGenerator debugInfoGenerator) { return Predicate.Compile(debugInfoGenerator); } |
|
|
|
#if !(NET35 || WINDOWS_APP || NETSTANDARD || PORTABLE || PORTABLE40 || UAP)
|
|
|
|
/// <summary></summary>
|
|
|
|
public Func<T, bool> Compile(DebugInfoGenerator debugInfoGenerator) { return Predicate.Compile(debugInfoGenerator); } |
|
|
|
|
|
|
|
/// <summary></summary>
|
|
|
|
public Expression<Func<T, bool>> Update(Expression body, IEnumerable<ParameterExpression> parameters) { return Predicate.Update(body, parameters); } |
|
|
|
/// <summary></summary>
|
|
|
|
public Expression<Func<T, bool>> Update(Expression body, IEnumerable<ParameterExpression> parameters) { return Predicate.Update(body, parameters); } |
|
|
|
#endif
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|