RepoDB
                                
                                 RepoDB copied to clipboard
                                
                                    RepoDB copied to clipboard
                            
                            
                            
                        A hybrid ORM library for .NET.
WHERE (Field1 > Field2); Example: Query(p => p.LastUpdated > p.DateInserted);
### Describe the enhancement As some users are eager to maximize the underlying data store internal functions, the only way to do this is to introduce a possibilty for the...
Use this query instead. SELECT * FROM Table ORDER BY Column1, Column2 OFFSET 13000000 ROWS FETCH NEXT 1000000 ROWS ONLY; This must only affect the following classes. - https://github.com/mikependon/RepoDb/blob/master/RepoDb/RepoDb/_SqlServer/StatementBuilders/SqlServerStatementBuilder.cs -...
I have an SQL Server table with an int identity column and I wish to use Query to find all invoice (Facture) starting with a particular number sequence "1406" for...
### Describe the enhancement From the docs around property handlers, you have this example:   What would be incredible is for RepoDB in the background to hold the backing...
I want to implement a global filter-like entity framework in Repodb. The reason I want to implement it is that I don't want to write where isDelete = 'false' everywhere....
On that page: https://repodb.net/cacher/dbfieldcache it seems that connection should be the first parameter of DbFieldCache.Get.
### Bug Description RepoDB in combination with SQL server seems to suffer from the same problems that Prisma has run into. https://github.com/prisma/prisma/issues/4535 It seems that RepoDB uses OUTPUT in their...
### Bug Description Referring to the previous isusses to create PropertyHandler, an error occurred during test execution. After lowering the version, it can be executed normally. **Exception Message:** ```csharp ArgumentException:...
### Bug Description I have found a bug related to the where condition, what is not matching due to wrong DbType of the DbParameter. Luckily, I am able to reproduce...