1234567891011121314151617181920212223 |
- using System;
- using System.Data;
- using FreeSql;
- namespace Admin.Core.Common.Attributes
- {
-
-
-
- [AttributeUsage(AttributeTargets.Method, Inherited = true)]
- public class TransactionAttribute : Attribute
- {
-
-
-
- public Propagation Propagation { get; set; } = Propagation.Required;
-
-
-
- public IsolationLevel? IsolationLevel { get; set; }
- }
- }
|