Show / Hide Table of Contents

    Interface IParameterDescription

    Dynamic stored procedure parameter description

    Namespace: XData.Mapping.Dynamic
    Assembly: XData.docfx.dll
    Syntax
    public interface IParameterDescription

    Properties

    | Improve this Doc View Source

    Alias

    Procedure source alias

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

    Binding

    Parameter value binding

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

    DbType

    Parameter database type

    Declaration
    DbType DbType { get; }
    Property Value
    Type Description
    DbType
    | Improve this Doc View Source

    DefaultValue

    Default parameter value

    Declaration
    object DefaultValue { get; }
    Property Value
    Type Description
    Object
    | Improve this Doc View Source

    DefaultValueType

    Default parameter value type

    Declaration
    DefaultType DefaultValueType { get; }
    Property Value
    Type Description
    DefaultType
    | Improve this Doc View Source

    Direction

    Parameter direction

    Declaration
    ParameterDirection Direction { get; }
    Property Value
    Type Description
    ParameterDirection
    | Improve this Doc View Source

    Name

    Parameter name

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

    NativeSqlType

    Native SQL type name

    Declaration
    string NativeSqlType { get; }
    Property Value
    Type Description
    String
    Remarks

    Used to specify native SQL column type when conflicted with default type mapping

    WARNING! May be not supported by database adapter!

    | Improve this Doc View Source

    Order

    Parameter order

    Declaration
    int Order { get; }
    Property Value
    Type Description
    Int32
    | Improve this Doc View Source

    Scale

    Parameter scale

    Declaration
    int Scale { get; }
    Property Value
    Type Description
    Int32
    | Improve this Doc View Source

    Size

    Parameter size

    Declaration
    int Size { get; }
    Property Value
    Type Description
    Int32
    | Improve this Doc View Source

    Type

    Parameter mapped type

    Declaration
    Type Type { get; }
    Property Value
    Type Description
    Type
    | Improve this Doc View Source

    TypeIsArray

    Parameter mapped type is array

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

    UdtSqlType

    Parameter SQL user defined type (UDT) description

    Declaration
    UdtSqlType UdtSqlType { get; }
    Property Value
    Type Description
    UdtSqlType
    | Improve this Doc View Source

    Value

    Parameter value

    Declaration
    object Value { get; }
    Property Value
    Type Description
    Object

    Methods

    | Improve this Doc View Source

    Clone()

    Clone parameter description

    Declaration
    IParameterDescription Clone()
    Returns
    Type Description
    IParameterDescription

    Cloned parameter

    | Improve this Doc View Source

    GetValue<T>()

    Returns parameter value

    Declaration
    T GetValue<T>()
    Returns
    Type Description
    T

    Parameter value

    Type Parameters
    Name Description
    T

    Parameter mapped type

    Extension Methods

    SerializationExtensions.ToXml<T>(T)
    CollectionsExtensions.SetValue<TKey, T>(TKey, T)
    CollectionsExtensions.AsEnum<T>(T)
    DataObjectQueryableExtensions.CompareVariable(Object, FilterOperation, String)
    Processing.Do<T>(T, Action<IProcess<T>>[])
    TypeExtensions.TryConvert<T, TResult>(T, Func<T, TResult>)
    TypeExtensions.TryConvert<T, TResult>(T, Func<T, TResult>, TResult)
    TypeExtensions.ChangeType<T>(Object)
    TypeExtensions.ChangeType(Object, Type)
    TypeExtensions.InvokeMethod<TRet>(Object, Type[], Expression<Func<TRet>>, BindingFlags)
    TypeExtensions.InvokeMethod(Object, Type[], Expression<Action>, BindingFlags)
    TypeExtensions.InvokeMethod<TRet>(Object, Expression<Func<TRet>>, BindingFlags)
    TypeExtensions.InvokeMethod(Object, Expression<Action>, BindingFlags)
    SqlBlockExtensions.SetExpression<TTag, TResult>(TTag, Expression<Func<IBlockQueryAdapter, TResult>>)
    QueryDescriptionExtensions.SetExpression<TTag, TResult>(TTag, Expression<Func<IQueryStructureAdapter, TResult>>)
    • Improve this Doc
    • View Source
    Back to top Generated by DocFX