RepoDB
RepoDB copied to clipboard
A hybrid ORM library for .NET.
### Describe the request An exception is being thrown if the F# Record Type and/or C# Immutable Class is used if you are querying a data from the database where...
Does RepoDb support querying over F# option types? For example, filtering on an option type property.
### Bug Description You cannot use a PropertyHandler (the attribute works correctly) with either **values** or **Nullable values**. ```csharp // Tried all possible combinations of .Add PropertyHandlerMapper.Add(new DateTimeHandlers(), true); PropertyHandlerMapper.Add(new...
### Bug Description Exceptions are thrown when an application tries to use RepoDb for both Postgres and SqlServer. These particular exceptions are thrown when attempting to insert a row. I...
Bug: There is already an open DataReader associated with this Connection which must be closed first.
### Bug Description This exception can occur during `QueryMultipleAsync`. I think the issue is the lines like [this one](https://github.com/mikependon/RepoDB/blob/master/RepoDb.Core/RepoDb/Operations/DbConnection/QueryMultiple.cs#L3581). Calling `await DbFieldCache.GetAsync` may lead to [this code](https://github.com/mikependon/RepoDB/blob/master/RepoDb.SqlServer/RepoDb.SqlServer/DbHelpers/SqlServerDbHelper.cs#L163) being executed, which...
### Bug Description When trying to execute a stored procedure I get a missing parameter exception. I have tried this with both the async and non-async methods and with both...
### Bug Description Hello. I'm encountering an issue when im trying to insert or merge a class with an enum in it. I've tried adding a [TypeMap(DbType.Int32)] attribute, but it...
I am trying to use the code from here: https://repodb.net/cacher/propertymappednamecache var properties = PropertyCache.Get(); properties.AsList().ForEach(p => { var mappedName = PropertyMappedNameCache.Get(p); // Use the 'mappedName' here } ); I have...
Recently I update the version of RepoDB for Postgresql from version 1.0.12 to 1.1.2, after that I ran my app and got this error: "23505: duplicate key value violates unique...
### Bug Description The previous InsertAll is now fixed with 1.12.8-b1 but a different InsertAll error is now being thrown on a similar simple insert **Exception Message:** ```csharp "You have...