We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Neptuo.Data.Sql is concept for simple and thin SQL data layer. Here are some thoughts on design. Implementation is currently far away.
Class with table properties contains table, joins and computed columns. Base contract is:
``C#
public interface IColumn { Type ValueType { get; } }
``
and the generic version for specifying generic return type (for reading values, described later):
public interface IColumn : IColumn { }