PetaPoco icon indicating copy to clipboard operation
PetaPoco copied to clipboard

Official PetaPoco, A tiny ORM-ish thing for your POCO's

Results 119 PetaPoco issues
Sort by recently updated
recently updated
newest added

Hi Everyone, i want a ask about Sql builder. I want to create database schema with postgreSql provider using sql builder function , but when this function executed with below...

...rather than a value type. The error is "The SqlParameter is already contained by another SqlParameterCollection"

Hi, this is my first time contributing an issue on github, so apologies if I'm doing anything wrong. I'm using PetaPoco's Sql class quite extensively on a project, and I've...

Hi, It looks like IAsyncReader is a good candidate to add CancellationToken support: `Task ReadAsync(CancellationToken cancellationToken);` Then the first lines of the implementations of this method can check if cancellation...

When I call `PocoData.ForType(type, mapper)` for the first time, the resulting `PocoData` object is stored in the cache keyed only by the type. This means that if I later call...

bug

Hi, Regarding in the class Database.cs the methods BeginTransactionAsync(), AbortTransactionAsync() and CompleteTransactionAsync(). Thank for you implementing these methods. Is it possible to pass through a cancellationToken to the underlying DbConnection...

Hi Team, can you please let me know the PetaPoco supports SAP Anywhere ? note: Inside SAP Anywhere parameterized query use ":" instead of "@" ex : ParameterName = ":Name";...

Hi all, It would be very beneficial for diagnostic tracing purposes throughout my application code if I could report on the _sharedConnectionDepth count either as a public read-only property of...

Adding full DateTime with milliseconds in petepoco `AddParam` will be treated as `DateTime` which will loss the milliseconds part, and if I amend the if else case with ``` c#...

enhancement
up-for-grabs

Hey, I use PetaPoco 5.1.306 together in an ASP.Net environment running .NET 5. Every few inserts/updates/selects the following happens: I get an error from Oracle.ManagedDataAccess: ``` System.InvalidOperationException: Connection must be...