Click or drag to resize

BatchActionQuery Properties

The BatchActionQuery type exposes the following members.

Properties
  NameDescription
Public propertyActionQueries
Gets the actionQueries set in this batch action query object.
Public propertyCanBePacked
Gets a value signalling whether this query can be packed in a packed query (true) or not (false). A query can be packed if it's not a batchquery and there are no parameter-parameter relations pending or parameter-field relations with self.
Public propertyCommand
Gets or sets the command. Not implemented on Batch action query objects. Use the indexer instead.
Public propertyConnection
Gets or sets the connection for this action query object. Get will return the connection of the first action query stored. Set will set the connection on all actionquery objects.
Public propertyCount
Gets the number of IActionQueries in this query.
Public propertyExceptionInfoRetriever
Gets / sets the ExceptionInfoRetriever object to retrieve db specific info from a db specific exception.
Public propertyExecuteThroughDbDataReader
If true (Default false) it will execute the command through ExecuteReader instead of ExecuteNonQuery and will assume output parameters are part of one or more resultsets. Output parameters are expected to be added through AddOutputParameterForReader(DbParameter), and are set through ordinal (so first parameter is set with value at ordinal 0).
Public propertyItem
Gets or sets the ActionQuery at the specified index.
Public propertyOutputParametersForReader
Gets the set of parameters set for the dbdatareader fill procedure. these parameters are added through AddOutputParameterForReader(DbParameter) and aren't part of the command.
Public propertyParameterFieldRelations
Gets the parameter field relations.
Public propertyParameterParameterRelations
Gets the parameter parameter relations for this IActionQuery. These definitions are used for insert queries in multi-target entity inserts.
Public propertyParameters
Gets the parameters of all queries.
Public propertyReturnValueParameter
If set, it will be used for the value returned in ExecuteNonQuery and will override the value ExecuteNonQuery returns or which is set in ForcedReturnValue.
Public propertySequenceRetrievalQueries
Gets the sequence retrieval queries. Not implemented in BatchActionQueries.
Top
Explicit Interface Implementations
  NameDescription
Explicit interface implementationPrivate propertyIActionQueryForcedReturnValue
Gets or sets the forced return value. If smaller than 0, the value returned by the command is used, otherwise this value. Set by DQEs which know up front the query won't return a valid return value, because batching is used.
Top
See Also