Creates a new command to access a stored procedure.
public DbConnectorCommand StoredProcedure(string name)
| parameter | description |
|---|---|
| name | The name of the stored procedure. |
Creates a new command.
public DbConnectorCommand StoredProcedure(string name,
params (string Name, object? Value)[] parameters)
| parameter | description |
|---|---|
| name | The name of the stored procedure. |
| parameters | The command parameters. |
Creates a new command.
public DbConnectorCommand StoredProcedure(string name, DbParameters parameters)
| parameter | description |
|---|---|
| name | The name of the stored procedure. |
| parameters | The command parameters. |