Show / Hide Table of Contents

Interface IScalarStoredProcedure<TParameters, TResult>

Provides an interface to execute scalar stored procedures.

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

The type of the parameter class.

TResult

The type of the result.

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

ExecuteScalar(TParameters)

Executes the stored procedure and returns a scalar value.

Declaration
TResult ExecuteScalar(TParameters parameters)
Parameters
Type Name Description
TParameters parameters

The parameters.

Returns
Type Description
TResult

The scalar value.

| Improve this Doc View Source

ExecuteScalarAsync(TParameters)

Executes the stored procedure and returns a scalar value.

Declaration
Task<TResult> ExecuteScalarAsync(TParameters parameters)
Parameters
Type Name Description
TParameters parameters

The parameters.

Returns
Type Description
Task<TResult>

The scalar value.

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.