0
0
Selaa lähdekoodia

事物属性说明

xiaoxue 5 vuotta sitten
vanhempi
commit
75ce827304
1 muutettua tiedostoa jossa 7 lisäystä ja 0 poistoa
  1. 7 0
      Admin.Core.Common/Attributes/TransactionAttribute.cs

+ 7 - 0
Admin.Core.Common/Attributes/TransactionAttribute.cs

@@ -10,7 +10,14 @@ namespace Admin.Core.Common
     [AttributeUsage(AttributeTargets.Method, Inherited = true)]
     public class TransactionAttribute : Attribute
     {
+        /// <summary>
+        /// 事务传播方式
+        /// </summary>
         public Propagation Propagation { get; set; } = Propagation.Requierd;
+
+        /// <summary>
+        /// 事务隔离级别
+        /// </summary>
         public IsolationLevel? IsolationLevel { get; set; }
     }
 }