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

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

enhancement
feature
optimization
needs-collaboration
breaking-changes

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

enhancement
todo
feature
request

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

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

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

bug
wontfix
working-as-expected

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

bug

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

question

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

request
needs-collaboration
breaking-changes

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
todo
limitation
breaking-changes

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

bug
wontfix
working-as-expected