tags:

views:

108

answers:

0

I have a simple method that does...

Session.CreateSQLQuery(syntax).List<T>();

The issue is that when I execute this against a stored procedure that enlists a linked server connection I get the following error...

The operation could not be performed because OLE DB provider "MSDASQL" for linked server "MyLinkedServer" was unable to begin a distributed transaction.

My question is; how can I tell NHibernate I do not want to use a transaction..?

Thanks..!