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.
Source: stackoverflow.com
Related Articles
- BLToolkit custom data provider
- c# Linq or code to extract groups from a single list of source data
- The data source does not support server-side data paging
- Entity Framework 6 Code First Custom Functions
- I am wondering about the state of connection and impact on code performance by 'yield' while iterating over data reader object
- System.ArgumentException: Complex DataBinding accepts as a data source either an IList or an IListSource
- Best open source LINQ provider
- How to parse XML data into the properties of a custom C# class?
- Is there any way to create a LINQ query as a variable without having the data source (yet)?
- Implementing a custom LINQ-to-X provider
- SQLite LINQ Provider Data Context
- How does linq actually execute the code to retrieve data from the data source?
- LINQ Source Code Available
- Casting LINQ expression throws "Internal .NET Framework Data Provider error 1025."
- .NET 4 Code Contracts: "requires unproven: source != null"
- Is there a way to speed up this code that finds data changes in two XML files?
- The given value of type String from the data source cannot be converted to type int of the specified target column
- Merge duplicate data without affecting others in LINQ code
- Linq to SQL Internal .NET Framework Data Provider error 1025
- Use a linq query as microsoft local report Data Source (WinForms)
- Custom data provider?
- At what point is a LINQ data source determined?
- Custom LINQ provider for Excel spreadsheets?
- creating Linq to sqlite dbml from DbLinq source code
- read icollection data using LINQ in C# code
- Entity Framework LINQ projection into custom type results in missing data
- updating data in many-to-many relationship in entity framework in code first existing database
- Custom delete in ASP.NET Dynamic Data scaffolds
- Linq to sql as object data source - designer problem with partial classes
- How can i copy data table records of different field name based on mapping list evaluating condition on source data table?
- Search from the string array and ignore that exact matched string
- Conditions on foreach loop using Linq
- LINQ Get single result or null
- EF one to many where condition
- LINQ - Complex Sorting
- join two list in linq initializing properties one time
- How to get the xml Element having optional value minOccurs=0
- How do I change this sql query to linq to sql?
- How to use a lambda expression as a parameter?
- compare the dates with linq
- Eager loading / prefetching many-to-many without LoadOptions - Linq to Sql
- Linq query not returning anything
- vb LINQ to dataset to extract single data point
- How can I get data from my database in LINQ C#?
- VB.NET LINQ - Count of collection within collection?
- LINQ concatenate values from associated tables
- LINQ: How to perform a conditional sum?
- Customized column in Linq
- Use Linq to return all objects in a list where the object's sub-object-list property contains all values of an int list
- Can SELECT and WHERE LINQ clause be combined?