using FreeSql; using System.Data; namespace Znyc.CloudCar.Utility.Attributes { /// /// 启用事物 /// [AttributeUsage(AttributeTargets.Method)] public class TransactionAttribute : Attribute { /// /// 事务传播方式 REQUIRED /// public Propagation Propagation { get; set; } /// /// 事务隔离级别 /// public IsolationLevel? IsolationLevel { get; set; } } }