Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NHibernate: insert multiple items at once

Tags:

nhibernate

all! I am learning NHibernate now and I would like to know is it possible to save multiple objects to database in one operation.

For example, consider this test code

    private static void SaveTestBillNamesInSession(ISession session, params string[] names)
    {
        var bills = from name in names
                    select new Bill
                        {
                            Name = name,
                            DateRegistered = DateTime.Now,
                        };
        foreach (var bill in bills)
            session.SaveOrUpdate(bill);
    }

This loop here generates many INSERT statements which may be sub-optimal in SQL Server 2008 which allows to include multiple data rows in one INSERT statement.

Is it possible to rewrite this code to make use of this functionality - insert all the data in one operation?

Update OK, now it's really started to send everything in a single batch. Many thanks to all!

like image 347
Gart Avatar asked Jan 23 '23 01:01

Gart


1 Answers

There's something close to what you want.

If you set the adonet.batch_size configuration property to anything other than 0 (the default), NHibernate will send that many statements at once to SQL Server.

like image 80
Diego Mijelshon Avatar answered May 10 '23 02:05

Diego Mijelshon