using FreeSql; using System; using System.Data; namespace ZhonTai.Admin.Core.Attributes; /// /// 启用事物 /// [AttributeUsage(AttributeTargets.Method, Inherited = true)] public class TransactionAttribute : Attribute { /// /// 事务传播方式 /// public Propagation Propagation { get; set; } = Propagation.Required; /// /// 事务隔离级别 /// public IsolationLevel IsolationLevel { get; set; } /// /// 数据库注册键 /// public string DbKey { get; set; } public TransactionAttribute() { } public TransactionAttribute(string dbKey) { DbKey = dbKey; } }