flepper
flepper copied to clipboard
No Order By and No Alias With As Method
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