0
0

TransactionAttribute.cs 405 B

12345678910111213141516
  1. using System;
  2. using System.Data;
  3. using FreeSql;
  4. namespace Admin.Core.Common
  5. {
  6. /// <summary>
  7. /// 启用事物
  8. /// </summary>
  9. [AttributeUsage(AttributeTargets.Method, Inherited = true)]
  10. public class TransactionAttribute : Attribute
  11. {
  12. public Propagation Propagation { get; set; } = Propagation.Requierd;
  13. public IsolationLevel? IsolationLevel { get; set; }
  14. }
  15. }