Interface ISelectOneCommandBuilder
Provides an interface select one command builder objects.
Namespace: Paradigm.ORM.Data.CommandBuilders
Assembly: Paradigm.ORM.Data.dll
Syntax
public interface ISelectOneCommandBuilder : ICommandBuilder, IDisposable
Methods
| Improve this Doc View SourceGetCommand(Object[])
Gets the select one command ready to execute the select query.
Declaration
IDatabaseCommand GetCommand(params object[] ids)
Parameters
Type | Name | Description |
---|---|---|
System.Object[] | ids | The id values of the entity that will be selected from the database. |
Returns
Type | Description |
---|---|
IDatabaseCommand | A select command already parametrized to execute. |