Blog.Core/Blog.Core.Common/Attribute/UseTranAttribute.cs

17 lines
519 B
C#
Raw Normal View History

using System;
2022-08-05 09:29:38 +08:00
using Blog.Core.Common.DB;
namespace Blog.Core.Common
{
/// <summary>
/// 这个Attribute就是使用时候的验证把它添加到需要执行事务的方法中即可完成事务的操作。
/// </summary>
[AttributeUsage(AttributeTargets.Method, Inherited = true)]
public class UseTranAttribute : Attribute
{
/// <summary>
/// 事务传播方式
/// </summary>
public Propagation Propagation { get; set; } = Propagation.Required;
}
}