RepoDB
RepoDB copied to clipboard
A hybrid ORM library for .NET.
Currently when you call `InsertAsync` (for example) and the PK is non identity column (i.e UUID with default) or a PK is already provided by the entity you are inserting,...
I am a bit confused when to use .Open() or even .EnsureOpen() on connections. Most of the documentation shows: ``` using (var connection = new MySqlConnection(ConnectionString)) { var id =...
For User definied Types (Udt) a general TypeMapper for MSSQL would be nice to have. ### Example For Spatial-Types (e.g. SqlGeography) I use dotMorten's Microsoft.SqlServer.Types. With no additional configuration, you...
does repoDB support Records? also, all the current documentation uses the word "record" to refer to "database" records, which perhaps should be changed to "row"/"rows" as it now conflicts with...
I have PostgreSQL database with two tables _Person_ and _Address_. Address table has FK _person_id_. When I try to insert a new entity in the address, I get an error...
### Bug Description I get an `Object reference not set to an instance of an object` error when calling `BulkMerge()` (I haven't tried other methods). I have tried calling both...
In the initial release of RepoDb.PostgrelSql, the bulk-insert is not yet supported. This feature will allow the users to do the actual bulk insert operations when connecting to PostgreSql DB....
### Describe the enhancement The enum properties must be supported on the BulkOperations as is it with the normal operations (i.e.: Insert, InsertAll, Merge and MergeAll). ### Additional Context More...
I am very curious about whether I can use F#'s Query Expression feature with RepoDB. Query expression plays very well with SQL databases, but after some digging in the codebase,...
It might be useful to add support for .NET Foundation [SourceLink ](https://github.com/dotnet/sourcelink/) as other libraries do (example: https://aspnetboilerplate.com/Pages/Documents/Debugging). In this way, it will be possible to download RepoDB source on...