RepoDB
RepoDB copied to clipboard
A hybrid ORM library for .NET.
### 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...
### 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....
### 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,...
It would be nice to see which issues are tagged under an upcoming minor or major release. Milestones could be used for that.
### Bug Description ITrace interface contains a definition for ```Before``` and ```After``` callbacks for: - ```ExecuteNonQuery``` - ```ExecuteQuery``` - ```ExecuteQueryMultiple``` - ```ExecuteReader``` - ```ExecuteScalar``` But none of these callbacks are...
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...
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?
### 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...
### 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...
Is there support to convert a mapping of class to a Create Table sql statement? Thanks