Click here to Skip to main content
15,881,882 members
Articles / Database Development / SQL Server

Light ORM Library for .NET

Rate me:
Please Sign up or sign in to vote.
4.83/5 (39 votes)
8 Oct 2010CPOL17 min read 220.4K   3.1K   184  
This article is about the Light Object-Relational Mapping library.
using System;

namespace Light
{
	/// <summary>
	/// Marks a method as a trigger.
	/// </summary>
	[AttributeUsage(AttributeTargets.Method, Inherited=false, AllowMultiple=false)]
	public class TriggerAttribute : Attribute
	{
		private Actions action;
		
		/// <summary>
		/// Creates a new instance.
		/// </summary>
		/// <param name="action">type of actions on which this trigger fires</param>
		public TriggerAttribute(Actions action) : base()
		{
			this.action = action;
		}
		
		/// <summary>
		/// Gets the action mask of this trigger.
		/// </summary>
		public Actions Action
		{
			get { return action; }
		}
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions