/
.NET
DA

Dapper

2.1.72

by github.com

Namespaces & Types

Dapper

STR

CommandDefinition

namespace Dapper

public structsealed

Represents the key aspects of a sql operation

Constructors (1)

public void CommandDefinition()

Properties (9)

Type

Description

CommandText

public · get;

string

The command (sql or a stored-procedure name) to execute

Parameters

public · get;

object

The parameters associated with the command

Transaction

public · get;

IDbTransaction

The active transaction for the command

CommandTimeout

public · get;

Nullable<int>

The effective timeout for the command

CommandType

public · get;

Nullable<CommandType>

The type of command that the command-text represents

Buffered

public · get;

bool

Should data be buffered before returning?

Flags

public · get;

CommandFlags

Additional state flags against this command

Pipelined

public · get;

bool

Can async queries be pipelined?

CancellationToken

public · get;

CancellationToken

For asynchronous operations, the cancellation-token

CommandDefinition.cs
1namespace Dapper
2{
3public sealed struct CommandDefinition
4{
5public string CommandText { get; }
6public object Parameters { get; }
...// 0 methods
}

Package Metadata

Version

2.1.72

types

9

License

MIT

Source

---

Other types in namespace

enumCommandFlags
clsCustomPropertyTypeMap
clsDbString
clsDefaultTypeMap
clsDynamicParameters
clsExplicitConstructorAttribute
intIWrappedDataReader
clsSqlMapper
Dapper · 2.1.72
AugustoDeveloper
9 types · 1 namespaces