|
|
Browse by Tags
All Tags » Transactions
-
Let me answer my own question...
I was using providerClass=''DataProviderEnterprise'' in my configuration file. Apparently this does not work with SQL Server 2005.
When I changed this to providerClass=''DataProvider'', everything worked as expected.
Thank you, David Burgett
-
I've got to be missing something simple because I know this example works in C#. (I recently started a new job where they use VB.Net so I'm porting some code...)
I'm writing a simple unit test to demonstrate how esTransactions are used. This is using the Northwind database in SqlServer 2005. I'm creating a transaction and then changing the ...
-
This example uses the EntitySpaces esTransactionScope class to save two EntitySpaces objects in a transaction. The esTransactionScope is used just like the .NET TransactionScope class only it is not distributed and works at the connection level.
Code:Employees emp = new Employees ();
emp.FirstName = ''Mike'';
emp.LastName = ''Entity''; ...
|
|
|