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 Query
- 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?
More Query from same tag
- Parent/Children Xml to DTO Object Model with LINQ
- SQL query with subquery equivalent for Linq-to-SQL
- C# Entity Framework with Linq.Dynamic: ORDER BY COALESCE
- Creating count based upon counts of Group By Statement in LINQ / lambda
- c# LINQ how to determin a XElement with specific attribute
- Make a Search Method generic using LINQ
- Can I use Linq to set properties on List<object> from data reader
- Elegant LINQ solution for finding Max/Min/Avg/etc. euclidean disdance between points
- Can I break my report into groups with LINQ?
- Using Linq to replace foreach statement
- Truncate call is ambigous b/w stringext.tuncate and extension.truncate
- Python equivalent of LINQ All function?
- How to Append to an expression
- nHibernate HqlTreeBuilder to implement Linq methods for HierarchyId
- Context duplication on nested call to linq operations
- LINQ to Entities: queryable extension method not reconized inside where condition
- How do multi-parameter linq expression initialize their parameter?
- Getting Linq query to return null if two variables are not equal
- LINQ to SQL: there was an error in a part of the date format
- Linq to Entites - Multiple columns search
- ViewBag on ListBox gets empty data
- LINQ - Deserialize JSON column and filter
- Passing a List of Strings to a where clause in a LINQ Query
- Why are there no results from my query?
- Dynamic linq not working
- LINQ Left Join SQL equivalent via DefaultIfEmpty fails to return results
- How to get different elements from a List<List<string>>?
- LINQ Lambda, need to query to a very confuse database, how should I do it?
- LINQ SelectMany is bind?
- How to 'select new' inside Linq lambda expression?