mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-06-19 04:18:16 +08:00
add admin
This commit is contained in:
@ -0,0 +1,35 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Linq.Expressions;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace FreeSql.Site.UI.Common
|
||||
{
|
||||
public static class PredicateExtensions
|
||||
{
|
||||
public static Expression<Func<T, bool>> True<T>() { return f => true; }
|
||||
|
||||
public static Expression<Func<T, bool>> False<T>() { return f => false; }
|
||||
|
||||
public static Expression<Func<T, bool>> Or<T>(this Expression<Func<T, bool>> expression1,
|
||||
Expression<Func<T, bool>> expression2)
|
||||
{
|
||||
var invokedExpression = Expression.Invoke(expression2, expression1.Parameters
|
||||
.Cast<Expression>());
|
||||
|
||||
return Expression.Lambda<Func<T, bool>>(Expression.Or(expression1.Body, invokedExpression),
|
||||
expression1.Parameters);
|
||||
}
|
||||
|
||||
public static Expression<Func<T, bool>> And<T>(this Expression<Func<T, bool>> expression1,
|
||||
Expression<Func<T, bool>> expression2)
|
||||
{
|
||||
var invokedExpression = Expression.Invoke(expression2, expression1.Parameters
|
||||
.Cast<Expression>());
|
||||
|
||||
return Expression.Lambda<Func<T, bool>>(Expression.And(expression1.Body,
|
||||
invokedExpression), expression1.Parameters);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user