// ***********************************************************************
// Assembly : XYY.Core
// Author : 陈汉林
// Created : 08-24-2016
//
// Last Modified By : 陈汉林
// Last Modified On : 08-24-2016
// ***********************************************************************
//
// Copyright (c) 澳鹏. All rights reserved.
//
//
// ***********************************************************************
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
///
/// The Infrastructure namespace.
///
namespace XYY.Core.Standard.Data.Infrastructure
{
///
/// 标识这个方法不打开事务.
///
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
public class NonTransAttribute : Attribute
{
}
}