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
No
OrderBy(OrderByDescending) and no alias withAsMethod !Expected Behavior
Actual Behavior
Problem: without OrderBy with method
AsandOrderBywithout alias: