Skip to content
Marek Fišera edited this page Nov 28, 2015 · 14 revisions

Neptuo.Data.Sql is concept for simple and thin SQL data layer. Here are some thoughts on design. Implementation is currently far away.

TableProperies

Class with table properties contains table, joins and computed columns. Base contract is:

public interface IColumn
{
    Type ValueType { get; }
}

and the generic version for specifying generic return type (for reading values, described later):

public interface IColumn<T> : IColumn
{ }

Clone this wiki locally