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 366491
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T13:38:16+00:00 2026-05-12T13:38:16+00:00

If you had a filled IQueryable variable. How would you add a new empty

  • 0

If you had a filled IQueryable variable.

How would you add a new empty entry in the end of that list?

Here is what I have to do:

  1. if there is 2 entry, add 3 empty entry
  2. if there is 0 entry, add 5 empty entry
  3. if there is 5 entry, add 5 empty entry

You can now see the pattern and it’s for a repeater in asp.net.

Should I simply create a generic list(.toList()) and use the add functionality or is there any better way to do this?

  • 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-12T13:38:17+00:00Added an answer on May 12, 2026 at 1:38 pm

    Well, if you’re happy to convert it to IEnumerable<T> you can use

    query.Concat(Enumerable.Repeat(new SomeRow(), 5)
         .Take(5);
    

    Note that that will add the same extra row 5 times (and then cut the total down to 5). That won’t work if you need to then be able to edit the rows; to do that, you’d want something like:

    query.AsEnumerable()
         .Concat(Enumerable.Range(1, 5).
                           .Select(ignored => new SomeRow())
         .Take(5);
    

    (I don’t think there’s a simpler way of calling the same function n times, but I could be wrong.)

    EDIT: I’ve added the call to AsEnumerable() on the basis of comments. Basically calling AsEnumerable means “I’ve finished the SQL bit; do the rest in-process.”

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

Sidebar

Related Questions

I have an IFRAME that should be filled with content from JavaScript. Had the
Had a page that was working fine. Only change I made was to add
Had a good search here but can't see anything that gets my mind in
Had a problem with the recursive conflictCheck() method. That seems fine now. I have
I have a non-typed dataset filled with data from user input (no database). There's
I have a PDF document that represents a print form that is normally filled
I have an html directory filled with very small PHP scripts that do nothing
I recently wrote some javascript code that filled a drop down list based on
I currently have a table with a repeater that is being filled with data
Someone had changed my .htaccess, and I have removed that. But I still have

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.