?? transactionalattribute.cs
字號:
using System;
namespace CSLA
{
/// <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 : Attribute
{}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -