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

  • Home
  • SEARCH
  • 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 8756017
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T13:58:18+00:00 2026-06-13T13:58:18+00:00

I understand that next query throws an exception since IQueryable<> provider doesn’t support Enumerable.TakeWhile

  • 0

I understand that next query throws an exception since IQueryable<> provider doesn’t support Enumerable.TakeWhile extension method.

        IQueryable<Contact> search = context.Contacts.TakeWhile(q => q.ContactID > 10);
        foreach(var q in search); // exception

But it gets confusing if I try to understand the preceding query from C#’s point of view.

Since last Linq method to be called in above chain is Linq-to-Objects TakeWhile, I’d expect search variable to be of type IEnumerable<T> , but instead it is of type IQueryable (I know that IQueryable<T> queries are converted into expression trees, while Linq-to-Objects queries are essentially converted into deferred method calls, so trying to convert an expression tree (created by context.Contacts ) into method calls wouldn’t work. As said, this is confusing to me from C#’s point of view ).

Also, the way Queryable operators build up their queries is by calling on IQueryProvider<T>.CreateQuery, which given an expression tree build up new IQueryable<T> objects. Doesn’t this mean that somehow IEnumerable<T>.TakeWhile operator must know to either build an expression tree by itself (which it doesn’t) or must be able to call IQueryProvider<T>.CreateQuery?

I’m pretty sure my assumptions are wrong, so can someone explain how is the preceding query able to return a result of type IQueryable<T> instead of IEnumerable<T>?

thank you in advance

  • 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-06-13T13:58:19+00:00Added an answer on June 13, 2026 at 1:58 pm

    IQueryable<T>.TakeWhile() returns IQueryable<T>

    IEnumerable<T>.TakeWhile() returns IEnumerable<T>

    [Test]
    public void TakeWhileTest()
    {
        List<int> ints = new List<int> {1, 2, 3, 4};
        var enumerable = ints.AsEnumerable().TakeWhile(x => x < 3);
        Assert.IsNotInstanceOf<IQueryable<int>>(enumerable);
        foreach (var i in enumerable)
        {
    
        }
        IQueryable<int> queryable = ints.AsQueryable().TakeWhile(x => x < 3);
        Assert.IsInstanceOf<IQueryable<int>>(queryable);
        foreach (var i in queryable)
        {
    
        }
    }
    

    The above works, my guess is that you try to get q.ContactId from a q that is null.
    You can try this (and skip the TakeWhile):

    foreach (var contact in context.Contacts)
    {
        if (contact.ContactID > 10)
            break;
        //Do your stuff here
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I understand that the first bit is the sign and that the next 8
I understand that: '\n' // literally the backslash character followed by the character for
I understand that JVM and CLR were designed as stack-based virtual machines. When JIT
I understand that the em measurement is a relative unit for font-size, relative to
I understand that this question may be subjective, this is why I need an
I understand that applications under the same domain name can talk to each other
I understand that storage history is something that is better to keep for vcs
I understand that we can set the various style attributes from code behind using
I understand that in CUDA's memory hierachy, we have things like shared memory, texture
I understand that the functional style prefers var or val List of a mutable,

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.