Amss.Boilerplate.Persistence.Impl.Utilities.Linq.ExpressionRewriter.HasValue C# (CSharp) Method

HasValue() private static method

private static HasValue ( IEnumerable expressions ) : bool
expressions IEnumerable
return bool
        private static bool HasValue(IEnumerable<Expression> expressions)
        {
            return expressions != null && expressions.Any(expr => expr != null);
        }