RepoDB icon indicating copy to clipboard operation
RepoDB copied to clipboard

A hybrid ORM library for .NET.

Results 158 RepoDB issues
Sort by recently updated
recently updated
newest added

WHERE (Field1 > Field2); Example: Query(p => p.LastUpdated > p.DateInserted);

enhancement
todo
for grabs

### 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...

enhancement
todo
for grabs

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 -...

optimization
performance
for grabs

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...

question

### Describe the enhancement From the docs around property handlers, you have this example: ![image](https://user-images.githubusercontent.com/2852839/208444090-951527d1-7a5d-41cb-80ca-f5649e371f74.png) ![image](https://user-images.githubusercontent.com/2852839/208444621-81ff76e7-441e-41c9-b03c-362f08347971.png) What would be incredible is for RepoDB in the background to hold the backing...

enhancement
request

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....

question

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
todo

### 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

### 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...

bug
todo