Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1928456
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T06:58:50+00:00 2026-05-17T06:58:50+00:00

If I have a compiled entities query via CompiledQuery.Compile and I then tack on

  • 0

If I have a compiled entities query via CompiledQuery.Compile and I then tack on another .Where() clause or .OrderBy() clause, do these addition clauses force a full recompile, a partial recompile, or no recompile?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T06:58:51+00:00Added an answer on May 17, 2026 at 6:58 am

    With the compiled query

    public static Func<DataClasses1DataContext, IQueryable<ErrorLog>>
        GetErrorLogs = CompiledQuery.Compile
        ((DataClasses1DataContext context) =>
            context.ErrorLogs.Where(el => el.UserName != "foo"));
    

    called like this:

    using (DataClasses1DataContext context = new DataClasses1DataContext())
    {
        context.Log = Console.Out;
        var res1 = GetErrorLogs(context).ToList();
        var res2 = GetErrorLogs(context).Where(el=>el.ErrorMessage.Contains("foo")).ToList();
    }
    

    the output is like this

    SELECT [t0].[ErrorLogID], [t0].[ErrorTime], [t0].[UserName], [t0].[ErrorNumber], [t0].[ErrorSeverity], [t0].[ErrorState], [t0].[ErrorProcedure], [t0].[ErrorLine], [t0].[ErrorMessage]
    FROM [dbo].[ErrorLog] AS [t0]
    WHERE [t0].[UserName] <> @p0
    -- @p0: Input NVarChar (Size = 4000; Prec = 0; Scale = 0) [foo]
    -- Context: SqlProvider(Sql2008) Model: AttributedMetaModel Build: 4.0.30319.1
    
    SELECT [t0].[ErrorLogID], [t0].[ErrorTime], [t0].[UserName], [t0].[ErrorNumber], [t0].[ErrorSeverity], [t0].[ErrorState], [t0].[ErrorProcedure], [t0].[ErrorLine], [t0].[ErrorMessage]
    FROM [dbo].[ErrorLog] AS [t0]
    WHERE [t0].[UserName] <> @p0
    -- @p0: Input NVarChar (Size = 4000; Prec = 0; Scale = 0) [foo]
    -- Context: SqlProvider(Sql2008) Model: AttributedMetaModel Build: 4.0.30319.1
    

    The only conclusion is that there is no recompile, but the .Where(el=>el.ErrorMessage.Contains("foo")) is applied with LINQ2Objects on the objects resulting from the LINQ2SQL query.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Assume I have created a compiled re: x = re.compile('^\d+$') Is there a way
We have a projector application (.exe) compiled from AS3. How can we start another
I have a fairly complex LINQ to Entities query I'd like to try compiling
I have a compiled swf file and a I can't edit it , but
I have an MFC application compiled with /clr and I'm trying to implement a
I have a c# .NET DLL compiled against the .NET 2.0 framework. A customer
I have a large legacy C++ project compiled under Visual Studio 2008. I know
In Python compiled regex patterns have a findall method that does the following: Return
We have a MFC 8 application compiled with /CLR that contains a larger amount
I have a C++ assembly with both managed and umanaged code compiled to a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.