Show / Hide Table of Contents

Interface IParameter

Provides an interface for a database parameter schema.

Namespace: Paradigm.ORM.Data.Database.Schema.Structure
Assembly: Paradigm.ORM.Data.dll
Syntax
public interface IParameter

Properties

| Improve this Doc View Source

CatalogName

Gets the name of the catalog where the parent routine resides.

Declaration
string CatalogName { get; }
Property Value
Type Description
System.String
| Improve this Doc View Source

DataType

Gets the data type of the parameter.

Declaration
string DataType { get; }
Property Value
Type Description
System.String
| Improve this Doc View Source

IsInput

Indicates if the parameter value will be passed as input, or will be an output parameter and should be return a value after the execution of the routine.

Declaration
bool IsInput { get; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

MaxSize

Gets the maximum size of the field, or zero if the column doesn't have a variable size.

Declaration
long MaxSize { get; }
Property Value
Type Description
System.Int64
| Improve this Doc View Source

Name

Gets the name of the parameter.

Declaration
string Name { get; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Precision

Gets the numeric precision of the column, or zero if the column data type is not numeric.

Declaration
byte Precision { get; }
Property Value
Type Description
System.Byte
| Improve this Doc View Source

Scale

Gets the numeric scale of the column, or zero if the column data type is not numeric or is not a decimal numeric type.

Declaration
byte Scale { get; }
Property Value
Type Description
System.Byte
| Improve this Doc View Source

SchemaName

Gets the name of the schema where the parent routine resides.

Declaration
string SchemaName { get; }
Property Value
Type Description
System.String
| Improve this Doc View Source

StoredProcedureName

Gets the name of the parent routine.

Declaration
string StoredProcedureName { get; }
Property Value
Type Description
System.String

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)
  • Improve this Doc
  • View Source
Powered by MiracleDevs ©2017. Code licensed under the MIT License.
Documentation generated by DocFX.