IQuerySurface
IQuerySurface
Summary== The IQuerySurface is essentially a "contract" for querying between your objects and your database and can be thought of as (basically) the DataContext in Linq to Sql. ==The Interface
It's pretty basic, but the interface is this:public interface IQuerySurface { IDataProvider Provider { get; } Select Select { get; } Insert Insert { get; } SqlQuery Avg