Click here to Skip to main content
15,891,423 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.8K   1.4K   72  
Basic CRUD methods with some other interesting features
namespace Sqless
{
	using System;
	using System.Data;
	
	public interface IDatabase : IDisposable
	{
		event EventHandler<TraceEventArgs> Trace;
		
		bool InTransaction { get; }
		
		void BeginTransaction();
		void BeginTransaction(IsolationLevel level);
		void Commit();
		void Rollback();
		
		IStatement Prepare(string sql);
		
		ITable Table(Type type);
		ITable Table<T>();
	}
}

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