This commit is contained in:
2018-06-29 19:47:36 +00:00
commit be7f501333
3769 changed files with 1425961 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
' this attribute allows us to mark dataportal methods
' as transactional to trigger use of EnterpriseServices
''' <summary>
''' Allows us to mark the DataPortal_xxx methods in our business
''' classes as transactional.
''' </summary>
''' <remarks>
''' When a method is marked as transactional, the DataPortal
''' mechanism runs the method within a COM+ transactional
''' context, so the data access is protected by a 2-phase
''' distributed transaction.
''' </remarks>
<AttributeUsage(AttributeTargets.Method)> _
Public Class TransactionalAttribute
Inherits Attribute
End Class