The EntitySpaces Community

Share and learn about the EntitySpaces Architecture.
Welcome to The EntitySpaces Community Sign in | Join | Help
in
Home Forums Photos

Browse by Tags

All Tags » Transactions
  • Re: Transaction not working in VB.Net

    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
    Posted to Transactions (Forum) by dburgett on April 4, 2007
  • Transaction not working in VB.Net

    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 ...
    Posted to Transactions (Forum) by dburgett on April 4, 2007
  • Using esTransactionScope

    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''; ...
    Posted to Transactions (Forum) by Mike.Griffin on January 29, 2007