up vote 0 down vote favorite
share [g+] share [fb]

We are writing this paper about database access in a web app and have to distinguish between the different categories of the database access layer.

All books and PDF's given us provide only information to JDBC or OLEDB.

Researching on the web brought me to the point that access to a Microsoft SQL Server trough linq-to-entities or linq-to-sql through ADO.Net can't be put under the same category as JDBC or OLEDB (middleware).

What would be the exact definition/category for Microsoft SQL Server-access through the .NET facilities such as LINQ2Entities or LINQ2SQL?

link|improve this question

77% accept rate
feedback

2 Answers

up vote 1 down vote accepted

ADO.NET is the next step after OleDB - and it's definitely in the same category as OleDB or ODBC / JDBC.

Linq-to-SQL and Linq-to-Entities are more high-level - they don't solve low-level data access problems, they're more about OR-mapping and providing models to work against. I would put those in a similar category as Hibernate in the Java world.

Marc

link|improve this answer
This means that ADO.NET replaces OleDB now, right? – Shaharyar Oct 13 '09 at 14:46
It's the next development stage after OleDB, yes - for .NET application (managed code apps), ADO.NET is the preferred way of connecting to databases – marc_s Oct 13 '09 at 14:53
feedback

LINQ to SQL and the Entity Framework both fit (to varying degrees) in the category of ORMs. Both sit on top of ADO.NET and cannot be used without it. ADO.NET is essentially a .NET replacement for OLE-DB, which, itself, was a replacement for ODBC.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.