score:1

Accepted answer

linq is just language integrated query. it is syntax to express query but in case of database querying it just creates expression tree which must be translated to sql and executed somehow. for this execution ado.net provider is used. the same states for entity framework which rely on ado.net provider to access the database. so if you want to create some implementation you should start with ado.net provider anyway.


Related Query

More Query from same tag