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

I have compiled and created .WAR file of my java code. then i started
I have a fairly complex LINQ to Entities query I'd like to try compiling
I have some entities created with LINQ-to-SQL. Six of these entities (representing values primarily
I have a following LINQ-to-entities query IQueryable<History<T>> GetFirstOperationsForEveryId<T> (IQueryable<History<T>> ItemHistory) { var q =
I have following query which takes almost 1 minute to execute. public static Func<Entities,
I have compiled a .NET application using Any CPU option. This .NET application uses
I have compiled opencv on snow leopard and it says it compiled correctly, however
I have compiled a simple win32 app successfully with bc++ (2 lines excerpt only):
I have compiled the NTL inifite precision integer arithmetic library for c++, using Microsoft
I have compiled my application on Linux (Intel) machine using this command gcc –g

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.