When using SQL Server, what effect (if any) would enabling or disabling MARS support have on NHibernate?
MARS = Multiple Active Result Sets
Reason for asking: Comparing Entity Framework and NHibernate. EF documentation states the following:
When you call the Load method during a foreach (C#) or For Each (Visual Basic) enumeration, the Entity Framework tries to open a new data reader. This operation will fail unless you have enabled multiple active results sets by specifying multipleactiveresultsets=true in the connection string. For more information, see Using Multiple Active Result Sets (MARS) on MSDN. You can also load the result of the query into a List collection, which closes the data reader and enables you to enumerate over the collection to load referenced entities.
http://msdn.microsoft.com/en-us/library/bb896272.aspx
Additional information when connecting to SQL Azure:
Again, I'm wanting to know if NHibernate has the same issue. Thanks.