Table of Contents

Interface ISimpleParameterInfo

Namespace
Dapper.SimpleSqlBuilder
Assembly
Dapper.SimpleSqlBuilder.dll

An interface that defines the simple parameter info type.

public interface ISimpleParameterInfo

Properties

DbType

Gets the parameter DbType.

DbType? DbType { get; }

Property Value

DbType?

Precision

Gets the parameter precision.

byte? Precision { get; }

Property Value

byte?

Scale

Gets the parameter scale.

byte? Scale { get; }

Property Value

byte?

Size

Gets the parameter size.

int? Size { get; }

Property Value

int?

Value

Gets the parameter value.

object? Value { get; }

Property Value

object?