Blog.Core/Blog.Core.Common/Attribute/UseTranAttribute.cs
2022-08-05 09:29:38 +08:00

17 lines
519 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
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;
}
}