RepoDB
RepoDB copied to clipboard
A hybrid ORM library for .NET.
### Description This operation will work like 'BatchQuery' however, instead of paging, it will use the skipping. For BatchQuery, the codes below will return the 20th to 30th rows. ```csharp...
Following the sample code on the website, if you don't open a MySql connection before calling BeginTransaction, you get the following error. ``` System.InvalidOperationException : The connection is not open....
Currently, there is no way for us to extract the list of tables of the database in an efficient (cached) manner. As RepoDB is becoming more hybrid and is fully...
I am trying to configure mapping for F# option types but have run into an exception that I could not diagnose. Attached is my attempt. [ConsoleApp1.zip](https://github.com/mikependon/RepoDb/files/4969536/ConsoleApp1.zip)
Currently `ExecuteQueryMultiple `does not have overload that will take `ICache` as a parameter, same as for example `ExecuteQuery` does. It would be useful to being able to return data from...
Hi, Before 1.10 I could use: `[TypeMap(DbType.Int32)] public LeadStatus Status { get; set; }` But this now fails, as the Status value retrieved from Db for some reason is NULL...
the method InsertAll in DbRepository does return the number of inserted rows. But InsertAll in BaseRepository does not return this. Docu says it should return this number.
I have table like ```fsharp [] type commandentity = { id: int64 eventid: Guid aggregateid: Guid commandid: Guid causationid: Guid correlationid: Guid commandpayload: string payloadtype: string queuename: string expectedversion: int64...
Given the following schema in SQLITE: ``` create table if not exists [es_events] ( -- id of the event id text not null, -- sequence/position of the event in the...
This user story will allow the Class Handler to have the information of the compiler's Member Assignments. This will give more access to the User (Library User) underlying access to...