Skip to content

Commit ca00fee

Browse files
authored
Adding notes on the sub-packages' purpose to the readme (#1718)
I just paraphrased the summaries from the sub-packages' Nuget Readmes and added them to the grid of packages in the Readme. Is that a good spot for them, and are those summaries sufficient? PR would close #1488
1 parent 62a526b commit ca00fee

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

Readme.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,18 @@ MyGet Pre-release feed: https://www.myget.org/gallery/dapper
2020
| [Dapper.SqlBuilder](https://www.nuget.org/packages/Dapper.SqlBuilder/) | [![Dapper.SqlBuilder](https://img.shields.io/nuget/v/Dapper.SqlBuilder.svg)](https://www.nuget.org/packages/Dapper.SqlBuilder/) | [![Dapper.SqlBuilder](https://img.shields.io/nuget/vpre/Dapper.SqlBuilder.svg)](https://www.nuget.org/packages/Dapper.SqlBuilder/) | [![Dapper.SqlBuilder](https://img.shields.io/nuget/dt/Dapper.SqlBuilder.svg)](https://www.nuget.org/packages/Dapper.SqlBuilder/) | [![Dapper.SqlBuilder MyGet](https://img.shields.io/myget/dapper/vpre/Dapper.SqlBuilder.svg)](https://www.myget.org/feed/dapper/package/nuget/Dapper.SqlBuilder) |
2121
| [Dapper.StrongName](https://www.nuget.org/packages/Dapper.StrongName/) | [![Dapper.StrongName](https://img.shields.io/nuget/v/Dapper.StrongName.svg)](https://www.nuget.org/packages/Dapper.StrongName/) | [![Dapper.StrongName](https://img.shields.io/nuget/vpre/Dapper.StrongName.svg)](https://www.nuget.org/packages/Dapper.StrongName/) | [![Dapper.StrongName](https://img.shields.io/nuget/dt/Dapper.StrongName.svg)](https://www.nuget.org/packages/Dapper.StrongName/) | [![Dapper.StrongName MyGet](https://img.shields.io/myget/dapper/vpre/Dapper.StrongName.svg)](https://www.myget.org/feed/dapper/package/nuget/Dapper.StrongName) |
2222

23+
Package Purposes:
24+
* Dapper.EntityFramework
25+
* Extension handlers for EntityFramework
26+
* Dapper.EntityFramework.StrongName
27+
* Extension handlers for EntityFramework
28+
* Dapper.Rainbow
29+
* Micro-ORM implemented on Dapper, provides CRUD helpers
30+
* Dapper.SqlBuilder
31+
* Component for building SQL queries dynamically and composably
32+
* Dapper.StrongName
33+
* High-performance micro-ORM supporting MySQL, Sqlite, SqlICE, and Firebird
34+
2335
Features
2436
--------
2537
Dapper is a [NuGet library](https://www.nuget.org/packages/Dapper) that you can add in to your project that will extend your `IDbConnection` interface.
@@ -113,7 +125,7 @@ var foos = new List<Foo>
113125
{
114126
{ new Foo { A = 1, B = 1 } }
115127
{ new Foo { A = 2, B = 2 } }
116-
{ new Foo { A = 3, B = 3 } }
128+
{ new Foo { A = 3, B = 3 } }
117129
};
118130

119131
var count = connection.Execute(@"insert MyTable(colA, colB) values (@a, @b)", foos);

0 commit comments

Comments
 (0)