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

Add documentation on how the casing is set up and what is default per database provider: * PascalCase * camelCase * snake_case * SCEAMING_SNAKE_CASE

enhancement
documentation
todo

### Describe the enhancement Currently, when you handle the result via PropertyHandler and ClassHandler, the values are returned as argument to the callback method. See below for the property handlers....

enhancement
todo

### Describe the enhancement Add a possibility to pass the desired setup values to the application. With this capability, it would enable the user to set the behavior of the...

enhancement

### Describe the enhancement In the past, RepoDB always return the `Primary` value but an issue has been reported that the scenario is not suited for some cases. At some...

enhancement

### Describe the enhancement Introduce the application context class that holds the generalized and globalized value for the library. Reading values: ```csharp var isAutomaticConversion = ApplicationContext.Get(ApplicationKeys.ConversionType); if (isAutomaticConversion) { ......

enhancement
for grabs

A comment received from the community. We will refine this soon. From: johnzabroski

enhancement
feature
nice to have
request
under assessment

In case of we have database replica so that we can round robin connection over many database instance

request

Please can add new support to database VistaDB

request

This PR contain the changes to implement lambda based property handlers. Also please note that Database.cs is directed to my local database. I can fix that if you decide to...

**Description:** Currently, you have to manually pass the `IDbTransaction` object everytime you call the `BaseRepository` or `DbRepository` methods. See below. ```csharp using (var repository = new NorthwindRepository()) { using (var...

todo