Interface IInsertCommandBuilder
Provides an interface for insert command builder objects.
Namespace: Paradigm.ORM.Data.CommandBuilders
Assembly: Paradigm.ORM.Data.dll
Syntax
public interface IInsertCommandBuilder : ICommandBuilder, IDisposable
  Methods
| Improve this Doc View SourceGetCommand(IValueProvider)
Gets an insert command query ready to insert one entity.
Declaration
IDatabaseCommand GetCommand(IValueProvider valueProvider)
  Parameters
| Type | Name | Description | 
|---|---|---|
| IValueProvider | valueProvider | A value provider to extract the value from the source.  | 
      
Returns
| Type | Description | 
|---|---|
| IDatabaseCommand | An insert command already parametrized to insert the entity.  |