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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T09:19:42+00:00 2026-06-15T09:19:42+00:00

I have list like this: var list = new List<string>(); This list contains lets

  • 0

I have list like this:

var list = new List<string>();

This list contains lets say following names: “Ken”, “John”, “Tom”, etc.

I need to add this list to database table which looks like this:

Id          SecondId              Name
1           1                     Ken
2           1                     John
3           2                     Tom

Where SecondId is secondary key and that info i already have. But my question is there a better way of adding all names to the database without iterating through list using foreach loop? Any linq query or some other way or i have to iterate through the list to add them to database one by one?

  • 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-15T09:19:43+00:00Added an answer on June 15, 2026 at 9:19 am

    I don’t think there is a way to add the list as a chunk.
    You could use the ForEach extension method on the List like so (assuming you are using a DbContext for database access):

    using (var context = new NameContext()) {
        list.ForEach(i => context.Names.Add(new Name(i, SECOND_ID)));
    }
    

    You can use the same approach but use you database writing code inside the lambda expression in case you are not using DbContext.

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

Sidebar

Related Questions

I have an ordered list like this: var list = new List<String>(){aaa,aab,aac,baa,bab,bac}; I want
Suppose I have a list of strings, like this: var candidates = new List<String>
I have a list like this Dim emailList as new List(Of String) emailList.Add(one@domain.com) emailList.Add(two@domain.com)
I use LINQ on a Dictionary<string, IList<ID>> like this: var searchCategories = new List
I have a known list of strings like the following: List<string> groupNames = new
I have some LINQ code that generates a list of strings, like this: var
Let's say I have a list like this: <ul class=list> <li><span class=pos><div class=txt_pos>1</div></li> <li><span
I have this code: List<string> lineList = new List<string>(); in j = 0; Dictionary<string,
I have two collections. var a = new List<string>() { a, b, c, d,
I have a list that contains something like this: C12 0402 123456 90 C133

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.