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