Table of Contents

Class SqlParams

Namespace
Tripous.Data
Assembly
Tripous.Data.dll

A collection of SqlParam objects

public class SqlParams
Inheritance
SqlParams
Inherited Members
Extension Methods

Constructors

SqlParams()

Constructor

public SqlParams()

Properties

Count

The number of items in this collection.

public int Count { get; }

Property Value

int

this[int]

Returns the SqlParam at the specified index.

public SqlParam this[int Index] { get; }

Parameters

Index int

Property Value

SqlParam

Items

The collection of SqlParam objects.

public List<SqlParam> Items { get; }

Property Value

List<SqlParam>

Methods

Add(string, object)

Adds a new SqlParam object to this collection.

public SqlParams Add(string Name, object Value)

Parameters

Name string
Value object

Returns

SqlParams