Nanorm icon indicating copy to clipboard operation
Nanorm copied to clipboard

A tiny data-access helper library for ADO.NET. Linker and native AOT friendly.

Results 6 Nanorm issues
Sort by recently updated
recently updated
newest added

Add a [source generator](https://github.com/dotnet/roslyn/blob/main/docs/features/incremental-generators.md#authoring-a-cache-friendly-generator) so that queries can be mapped to types without the type having to manually implement `IDataReaderMapper`. Example, when the type being mapped to is also the...

If folks just install the `Nanorm` package but use it with SQLite or Npgsql they'll be missing out on the best experience. An analyzer in the Nanorm package could detect...

Enable passing parameter values without having to call an extension method on the value itself and without boxing the value, e.g.: ```csharp var createdTodo = await db.QuerySingleAsync(""" INSERT INTO Todos(Title,...

See https://github.com/DamianEdwards/Nanorm/issues/21

Hello, I was playing around with this library for a simple AOT project of mine. I noticed how there's no mapping for nullable columns, as they're explicitly ignored by the...