using FreeSql; using System; using System.Data; 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; } } }