Deveel.Data.Sql.Query.QueryExpressionExtensions.HasSubQuery C# (CSharp) Method

HasSubQuery() public static method

public static HasSubQuery ( this expression ) : bool
expression this
return bool
        public static bool HasSubQuery(this SqlExpression expression)
        {
            return new SubQueryDiscovery().Verify(expression);
        }