I am writing a .NET application, and I don’t like the idea of implementing a data layer from scratch. (By the data layer, I mean the code that speaks to the database, not the layer that abstracts access to the database in domain objects (sometimes called the data access layer and used interchangeably with the data layer).)
I would like to find an existing implementation of a common data layer that provides standard crud functions, error handling, connection management - works. I will only talk with SQL Server.
It doesn't matter to me if the library is in C # or VB.NET, and I don't care if it is LINQ or ADO.NET. While this is working.
** I want to emphasize that I am not looking for technologies or mechanisms for accessing data (for example, LINQ, ORM tools, etc.), but rather existing libraries.)
source
share