added marr.datamapper source code for easy debugging.

This commit is contained in:
kay.one 2013-03-30 14:56:34 -07:00
commit 3cdff3bb71
96 changed files with 9198 additions and 363 deletions

16
Marr.Data/QGen/IQuery.cs Normal file
View file

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Marr.Data.QGen
{
internal interface IQuery
{
/// <summary>
/// Generates a SQL query for a given entity.
/// </summary>
/// <returns></returns>
string Generate();
}
}