I have something that looks like this

foreach (var user in NewUsers)
            {
                var dbUser = new User {FirstName = user.FirstName};
                dbUser.Save();
            }

That is too many inserts into the database. Can I do something like?

User.BulkInsert(NewUsers);

Thanks.

link|improve this question

30% accept rate
feedback

1 Answer

Check out the Batch Query - this should solve the issue http://www.subsonicproject.com/docs/BatchQuery

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.