Browse Source

事物属性说明

xiaoxue 5 years ago
parent
commit
75ce827304
1 changed files with 7 additions and 0 deletions
  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; }
     }
 }