OrderByDescending works for multiple elements
Previously doing .OrderByDescending("x", "y")
would generate ORDER BY x y DESC
Now it will generate ORDER BY x DESC y DESC
Previously doing .OrderByDescending("x", "y")
would generate ORDER BY x y DESC
Now it will generate ORDER BY x DESC y DESC