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

### Context One of the main benefits that I saw in RepoDb was its _only dependency_ on `IDbConnection`: this allowed for **simple DI** into my components, and greatly improved the...

request
under assessment

### Bug Description When inserting a row using raw sql **Exception Message:** ```csharp System.Data.SqlClient.SqlException : There are fewer columns in the INSERT statement than values specified in the VALUES clause....

bug
wontfix

### Describe the enhancement My organization uses postgres Schemas for tenant isolation. As such, we need to be able to dynamically connect to a requested schema; when using raw npgsql,...

enhancement
todo

It would be nice to see which issues are tagged under an upcoming minor or major release. Milestones could be used for that.

question

### Bug Description ITrace interface contains a definition for ```Before``` and ```After``` callbacks for: - ```ExecuteNonQuery``` - ```ExecuteQuery``` - ```ExecuteQueryMultiple``` - ```ExecuteReader``` - ```ExecuteScalar``` But none of these callbacks are...

bug

The implementation of Cursor Pagination from this [code base](https://github.com/cajuncoding/HotChocolate.RepoDb/tree/main/HotChocolate.RepoDb/RepoDb.CursorPagination) is quite awesome. This story will allow us to consider the implementation to be integrated to the core library (RepoDb) or...

enhancement

I am using RepoDB.BulkInsert() method, the child entities inside the entity object is not getting loaded to the database. Do we need to provide any option to achieve that?

question

### Describe the enhancement The `DataEntityDataReader` class is only used by the Bulk Operations, in which, it has no usage within the CORE library. ### Additional Context More information to...

enhancement

### Describe the enhancement Currently, the library is explicitly requiring the calls to the `Initialize()` method of the bootstrapper. It is good if we can enable the things in the...

enhancement

Is there support to convert a mapping of class to a Create Table sql statement? Thanks

question