using System;
using System.Linq.Expressions;
namespace EntrustSettle.Common.Helper
{
///
/// Linq操作帮助类
///
public static class LinqHelper
{
///
/// 创建初始条件为True的表达式
///
///
///
public static Expression> True()
{
return x => true;
}
///
/// 创建初始条件为False的表达式
///
///
///
public static Expression> False()
{
return x => false;
}
}
}