Dommel Documentation

repository·master·Indexed 20 days ago

https://github.com/henkmollema/dommel

A library providing a convenient API for CRUD operations using Dapper. Dommel extends the IDbConnection interface with methods that automatically generate SQL based on POCO entities and support LINQ expressions for querying.

Tokens
214
Snippets
1
Records
2
Agent score
22%

What's inside Dommel

  1. Overview of Dommel CRUD operations

    master

    Dommel simplifies CRUD (Create, Read, Update, Delete) operations by providing extension methods for the IDbConnection interface. It uses Dapper for query execution and object mapping.

    Key features include:

    • Automatic SQL Generation: Queries are generated based on your POCO (Plain Old CLR Object) entities.
    • LINQ Support: LINQ expressions are translated into SQL expressions for querying.
    • Extensibility: You can customize how table names, column names, key properties, and POCO properties are resolved.