MsSqlAdapter.readMany

Executes a multi sql read.

class MsSqlAdapter(TModel)
final override
TModel[]
readMany
(
string query
,
DbParam[string] params
,
string connectionString = null
)

Parameters

query string

The sql query.

params DbParam[string]

The parameters.

connectionString string

The connection string. (If null, it will select the default)

Return Value

Type: TModel[]

A range filled models with the rows returned by the sql read.

Meta