flepper icon indicating copy to clipboard operation
flepper copied to clipboard

No Order By and No Alias With As Method

Open fulviocanducci opened this issue 6 years ago • 0 comments

No OrderBy (OrderByDescending) and no alias with As Method !

Expected Behavior

FlepperQueryBuilder
                .Select()
                .From("User").As("u")
                .OrderBy("Id","u");

Actual Behavior

Problem: without OrderBy with method As and OrderBy without alias:

FlepperQueryBuilder
                .Select()
                .From("User").As("u") // problem: without OrderBy com method "As"
                .OrderBy("Id") // No OrderBy And No Alias # bug

fulviocanducci avatar May 13 '18 14:05 fulviocanducci