NPoco icon indicating copy to clipboard operation
NPoco copied to clipboard

Simple microORM that maps the results of a query onto a POCO object. Project based on Schotime's branch of PetaPoco

Results 78 NPoco issues
Sort by recently updated
recently updated
newest added

... "It might, however I need to look at the implications of that...not just for Sql Server as well." _Originally posted by @schotime in https://github.com/schotime/NPoco/issues/1#issuecomment-9463816_

Whilst making heavy use of ToPageAsync(), most of the time I only need a cut-down list of fields from the model. I use ProjectToAsync() in other places where I'm not...

enhancement

The current formatting code puts brackets around varchar/nvarchar size instead of parenthesis

oracle 19c and Oracle.ManagedDataAccess.Core 3.21.3, call InsertBatch throw exception "ORA-00933: SQL command not properly ended"

more-info-required

For "legacy application" reasons our database primarily uses CHAR column types with a "Y" or "N" to represent boolean values. We created a `BooleanMapper` class that appropriately handles the conversion...

For tables with very few columns the default batchsize of 4096 rows is actually not a lot. Added the parameter, nothing else. Gives the end user a bit of extra...

If a C# variable is defined as the new DateOnly type and the database column is Date using the column in a NPOCO Query will throw the error that the...

enhancement
v6

Commit f5e3d745ae026e81b373f7f57a5af3cacab9a0ac adds support for converting strings to guids, but only as part of an entity mapping. It would be useful to support this for ExecuteScalar too

With this update, rather than just trying to convert an ExecuteScalar result type using `Converter.ChangeType` it uses the mappers registered with the database to allow more fine grained conversions. This...

Hi I am using NPoco (4.0.2) in an asp.net core website with Umbraco CMS 9. My poco has a Datetime property and before I insert it into the database I...