Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
henkmollema committed Jun 23, 2014
1 parent 549e9be commit 7f8458f
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,13 @@ Dommel

Dommel provides a convenient API for CRUD operations using extension methods on the `IDbConnection` interface. [Dapper](https://github.com/StackExchange/dapper-dot-net) is used for query execution and object mapping. The functionality is basically the same as [Dapper.Contrib](https://github.com/StackExchange/dapper-dot-net/tree/master/Dapper.Contrib) (and Dapper.Rainbow) but since it has not been updated any time lately and it has some shortcomings, Dommel was born.

### Donwload
NuGet package comming soon.
<hr>

### Download
[![Download Dommel on NuGet](http://i.imgur.com/g9ZIbID.png "Download Dommel on NuGet")](https://www.nuget.org/packages/Dommel)

<hr>


### The API

Expand Down Expand Up @@ -49,6 +54,8 @@ using (IDbConnection con = new SqlConnection())
}
```

<hr>

### Extensibility
##### `ITableNameResolver`
Implement this interface if you want to customize the resolving of table names when building SQL queries.
Expand Down Expand Up @@ -106,4 +113,4 @@ Use the `SetColumnNameResolver()` method to register the custom implementation:
Dommel.SetColumnNameResolver(new CustomColumnNameResolver());
```

I am working on a version of [Dapper.FluentMap](https://github.com/HenkMollema/Dapper-FluentMap) which implements the `IColumnNameResolver` and uses the configured mapping.
I am working on a version of [Dapper.FluentMap](https://github.com/HenkMollema/Dapper-FluentMap) which implements these interfaces and use the configured mappings.

0 comments on commit 7f8458f

Please sign in to comment.