Click here to Skip to main content
15,895,746 members
Articles / Programming Languages / C#

A Small ADO.NET Library with Some ORM Capabilities

Rate me:
Please Sign up or sign in to vote.
4.76/5 (31 votes)
10 Dec 2011CPOL6 min read 75.9K   1.4K   72  
Basic CRUD methods with some other interesting features
namespace Sqless
{
	using System;
	
	[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property,
			Inherited=true, AllowMultiple=false)]
	public class FieldAttribute : Attribute
	{
		private string name = string.Empty;
		private FieldFlags flags = FieldFlags.ReadWrite;
		
		public FieldAttribute() : this(string.Empty)
		{}
		
		public FieldAttribute(string name) : this(name, FieldFlags.ReadWrite)
		{}
		
		public FieldAttribute(string name, FieldFlags flags)
		{
			this.name = name;
			this.flags = flags;
		}
		
		public string Name
		{
			get { return name; }
			set { name = value; }
		}
		
		public FieldFlags Flags
		{
			get { return flags; }
			set { flags = value; }
		}
	}
}

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