Click here to Skip to main content
Click here to Skip to main content
Articles » Database » Database » ADO.NET » Downloads
 

Light ORM Library for .NET

By , 8 Oct 2010
 
using System;
using System.Data;

namespace Light
{
	/// <summary>
	/// Maps a class member to a table column.
	/// This should only be used for inherited members.
	/// </summary>
	[AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface | AttributeTargets.Struct,
	                Inherited=false, AllowMultiple=true)]
	public class MappingAttribute : ColumnAttribute
	{
		private string member;
		
		/// <summary>
		/// Maps a class member to a table column.
		/// This should only be used for inherited members.
		/// </summary>
		/// <param name="member">name of the class member</param>
		/// <param name="columnName">column name</param>
		/// <param name="dbtype">database data type</param>
		public MappingAttribute(string member, string columnName, DbType dbtype)
			: this(member, columnName, dbtype, 0)
		{
		}
		
		/// <summary>
		/// Maps a class member to a table column.
		/// This should only be used for inherited members.
		/// </summary>
		/// <param name="member">name of the class member</param>
		/// <param name="columnName">column name</param>
		/// <param name="dbtype">database data type</param>
		/// <param name="size">database data type size</param>
		public MappingAttribute(string member, string columnName, DbType dbtype, int size)
			: base(columnName, dbtype, size)
		{
			this.member = member;
		}
		
		/// <summary>
		/// Gets the name of the class member.
		/// </summary>
		public string MemberName
		{
			get { return member; }
		}
	}
}

By viewing downloads associated with this article you agree to the Terms of use 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)

About the Author

Sergey Busel
Software Developer (Senior)
United States United States
Member
No Biography provided

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130523.1 | Last Updated 8 Oct 2010
Article Copyright 2007 by Sergey Busel
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid