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

Ask A Question

Stats

  • Questions 183k
  • Answers 183k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer This is probably because when the senders are all on… May 12, 2026 at 4:43 pm
  • Editorial Team
    Editorial Team added an answer As Greg Hewgill mentioned in a comment on the question,… May 12, 2026 at 4:43 pm
  • Editorial Team
    Editorial Team added an answer There is always a chance of a breaking change when… May 12, 2026 at 4:43 pm

Related Questions

I'm trying to create routes which follow the structure of a tree navigation system,
I've got a LOT of tests written for a piece of software (which is
Background : I was recently playing around with GDI+ to draw a Disc displaying
I have this garden variety USB video camera, and it came with two mini-apps,

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.