flepper
flepper copied to clipboard
Flepper is a library to aid in database interaction. :frog:
Cant use functions in where clause eg: .Where("year(DATE)").EqualsTo(2021)
Cant use multiple GroupBy eg: .GroupBy("Name").ThenBy("Age") After using GroupBy clause cant use OrderBy clause eg: .GroupBy("Name").ThenBy("Age") .OrderBy("Name")
Any chance we get this to work with https://querybuilder.js.org/
## Expected Behavior SELECT * FROM [User] AS u WHERE EXISTS(SELECT * FROM [Phone] AS p WHERE [p].[UserId] = [u].[Id] ) --- SELECT * FROM [User] AS u WHERE NOT...
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`...
## Expected Behavior More documentation about - [ ] select statements - [ ] sql functions joins - [ ] comparison operators - [ ] dapper extansions. ## Actual Behavior...
## Expected Behavior Today there is only support for SQL Server 2008 and higher, in order to have a wider scope it would be interesting to have support for other...
## Expected Behavior Improve Code Coverage ## Actual Behavior Code coverage is too low
## Expected Behavior It would be interesting if we could have some way of intercepting the execution of Query in the same style we have with interceptors in the Entity...