mrd
mrd

Reputation: 2183

Linq2Sql Repository pattern

Does anyone know where can I find an easy example of Linq2SQL wrapped in the repository pattern?

Upvotes: 2

Views: 1047

Answers (4)

Oleksii G.
Oleksii G.

Reputation: 487

One more is AcroDB: http://oleksiy.pro/tag/acrodb/

The project is used on the first layer after Linq2SQL, and makes entities as abstract as interfaces, and at runtime on project start dynamic entities are generated.

Upvotes: 0

Tomasz Jaskuλa
Tomasz Jaskuλa

Reputation: 16013

Check this blog post : http://weblogs.asp.net/rashid/archive/2009/02/19/100-unit-testable-linq-to-sql-repository.aspx There is a zip linked to it with a working demo.

Upvotes: 0

Related Questions