Table of Contents

Class DataParameterMetadata

Namespace
Songhay.Models
Assembly
SonghayCore.dll

A JSON.net-friendly definition for types implementing IDataParameter.

public class DataParameterMetadata
Inheritance
DataParameterMetadata
Inherited Members
Extension Methods

Properties

DataRowVersion

Gets or sets the data row version.

public DataRowVersion DataRowVersion { get; set; }

Property Value

DataRowVersion

DbType

Gets or sets the type of the database.

public DbType DbType { get; set; }

Property Value

DbType

ParameterDirection

Gets or sets the parameter direction.

public ParameterDirection ParameterDirection { get; set; }

Property Value

ParameterDirection

ParameterName

Gets or sets the name of the parameter.

public string? ParameterName { get; set; }

Property Value

string

ParameterValue

Gets or sets the parameter value.

public object? ParameterValue { get; set; }

Property Value

object

SourceColumn

Gets or sets the source column.

public string? SourceColumn { get; set; }

Property Value

string