We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5b0f4e commit eb7a473Copy full SHA for eb7a473
Admin.Core.Common/Attributes/TransactionAttribute.cs
@@ -10,7 +10,14 @@ namespace Admin.Core.Common
10
[AttributeUsage(AttributeTargets.Method, Inherited = true)]
11
public class TransactionAttribute : Attribute
12
{
13
+ /// <summary>
14
+ /// 事务传播方式
15
+ /// </summary>
16
public Propagation Propagation { get; set; } = Propagation.Requierd;
17
+
18
19
+ /// 事务隔离级别
20
21
public IsolationLevel? IsolationLevel { get; set; }
22
}
23
0 commit comments