Show / Hide Table of Contents

Interface INonQueryStoredProcedure<TParameters>

Provides an interface to execute non query stored procedures.

Inherited Members
IRoutine.Command
Namespace: Paradigm.ORM.Data.StoredProcedures
Assembly: Paradigm.ORM.Data.dll
Syntax
public interface INonQueryStoredProcedure<in TParameters> : IRoutine, IDisposable
Type Parameters
Name Description
TParameters

The type of the parameters.

Remarks

Instead of sending individual parameters to the procedure, the orm expects a type containing or referencing the mapping information, where individual parameters will be mapped to properties.

Methods

| Improve this Doc View Source

ExecuteNonQuery(TParameters)

Executes the stored procedure as a non query.

Declaration
int ExecuteNonQuery(TParameters parameters)
Parameters
Type Name Description
TParameters parameters

The parameters.

Returns
Type Description
System.Int32

Number of affected rows.

| Improve this Doc View Source

ExecuteNonQueryAsync(TParameters)

Executes the stored procedure as a non query.

Declaration
Task<int> ExecuteNonQueryAsync(TParameters parameters)
Parameters
Type Name Description
TParameters parameters

The parameters.

Returns
Type Description
Task<System.Int32>

Number of affected rows.

Extension Methods

ObjectExtensions.ThrowIfFails<TException>(Object, Action, String)
ObjectExtensions.ThrowIfFails<TException, TResult>(Object, Func<TResult>, String)
ObjectExtensions.ThrowIfFailsAsync<TException>(Object, Func<Task>, String)
ObjectExtensions.ThrowIfFailsAsync<TException, TResult>(Object, Func<Task<TResult>>, String)

See Also

IRoutine
  • Improve this Doc
  • View Source
Powered by MiracleDevs ©2017. Code licensed under the MIT License.
Documentation generated by DocFX.