RepoDB
                                
                                
                                
                                    RepoDB copied to clipboard
                            
                            
                            
                        A hybrid ORM library for .NET.
**TL;DR** Currently, the [ITrace](https://github.com/mikependon/RepoDB/blob/master/RepoDb.Core/RepoDb/Interfaces/ITrace.cs) interface as being the base of all tracing capabilities, contains the methods that are equivalent to the existing extended operations for the `IDbConnection`. **See below for...
there is no method with join name in SqlConnection Class and BaseRepository and no any join support in SqlServerTableHints Class. one of the best functionality of orms is support rdbms...
### Bug Description When launching a dotnet executable using `dotnet run -- -c appsettings.json` from a project directory, it no longer finds RepoDb.PostgreSql **Exception Message:** ```csharp System.AggregateException: One or more...
### Bug Description I'm using int Enums with the Flags attribute and inserting with ExecuteNonQueryAsync and AnonymouseType is working but when I try and read a row that have more...
### Bug Description Assembly that referenced more than one provider. In my case: **Exception Message:** ```csharp System.MissingMethodException: Method not found: 'Void RepoDb.DbSettingMapper.Add(System.Type, RepoDb.Interfaces.IDbSetting, Boolean)'. at RepoDb.SqlServerBootstrap.Initialize() ``` Upon calling the...
BulkMerge a DataTable with SqlBulkCopyOptions.KeepIdentity is inserting new rows but with new Identity not keeping the identity from the DataTable. ```csharp rowsCount = connection.BulkMerge(fullTableName, dt, options: SqlBulkCopyOptions.KeepIdentity); this the SQL...
I am using sql server. When I try to Bulk Insert on a table and there is a unique index (not Primary Key) and the index has IGNORE_DUP_KEY = ON...
Request: [MAJOR] Refactor the RepoDB library into multiple Nuget Packages (Consideration to v2.0?)
The intention is to only segregate the DOMAIN from the IMPLEMENTATIONS to simplify the extensibilities. All the existing objects and namespaces will not be affected even if they are moved...
We have a scenario where there is an entity with a UUID field which acts as the primary key: ```csharp [Primary] [Map("some_pk_field")] public Guid SomePkField { get; set; } ```...
### Bug Description Getting an exception when trying to use BinaryBulkInsertAsync() `System.NotSupportedException: The WriteAsync method cannot be called when another write operation is pending` I am trying to inserts 68,000+...