vote up 0 vote down star

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.

flag

25% accept rate

1 Answer

vote up 2 vote down

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

link|flag

Your Answer

Get an OpenID
or

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