I google and look in ReferenceSource but I can't find source of LINQ to SQL where LINQ queries converted to SQL statments. Is there any one who knows it?
for example:
from item in Users
select item
Converted to:
SELECT [t0].[UserID], [t0].[Username], [t0].[FirstName], [t0].[LastName], [t0].[IsSuperUser], [t0].[AffiliateId], [t0].[Email], [t0].[DisplayName], [t0].[UpdatePassword]
FROM [Users] AS [t0]
How? I want to see source of this behavior in DotnetFramwork source.
I've used DbCommand off of the datacontext. It takes an IQueryable. System.Data.Linq.DataContext.GetCommand(System.Linq.IQueryable)
Summary: Represents an SQL statement or stored procedure to execute against a data source. Provides a base class for database-specific classes that represent commands.
Then it gives you something like this
Update you seem to want the code that's used by the framework for building the SQL from the query. Here is a link to the MSFT reference code for the SQLProvider I think you can find your answer in there. SQLProvider
Look at this method it returns the Query Info of the Query expression you passed along. Query Info has the resulting CommandText I mentioned above.
......
You'll see the the GetCommand also calls the Build Query Method to generate the the SQL and then get the command text from the first query