Click or drag to resize

DataSourceCommandType Class

Specifies the type of command, which a DataSourceCommand executes.
Inheritance Hierarchy

Namespace:  Aloe.SystemFrameworks.Domain.DataAccess
Assembly:  Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntax
public sealed class DataSourceCommandType : Enum

The DataSourceCommandType type exposes the following members.

Fields
  NameDescription
Public fieldStatic memberCallRemoteMethod
Invokes a remote method of an entity. The result is provided in AdditionalData.
Public fieldStatic memberDeleteRow
Deletes one row with the specified Id from the table with the specified TableName.

For more information, see CreateDeleteRowCommand(String, Guid, String).

Public fieldStatic memberEvaluateDataFilter
Evaluates whether a data row in a buffer satisfies a data filter. Input parameters:
  • AdditionalData - The data filter, provided in XML format.
  • Parameter - A Buffer, containing the data to be evaluated.
  • TableName - The name of the table, containing the row, which should be evaluated.
  • Id - The id of the row, which should be evaluated.
The result is returned in AdditionalData. It is either "true" or "false".

For more information, CreateEvaluateDataFilterCommand(String, Guid, String, String, IBuffer)

Public fieldStatic memberGetRow
Retrieves one row with the specified Id from the table with the specified TableName.

For more information, see CreateGetRowCommand(String, Guid, String).

Public fieldStatic memberGetTableMetadata
Gets meta data for the table, specified in TableName. Returns the meta-data in TableMetadataResult.

For more information, see CreateGetTableMetadataCommand(String, String).

Public fieldStatic memberQuery
Executes the supplied Query against the data source. The result is provided in Result.

For more information, see CreateQueryCommand(DataAccessQuery, String).

Public fieldStatic memberQueryCount
Returns the number of records returned by a query. The result is provided in AdditionalData.

For more information, see CreateQueryCountCommand(DataAccessQuery, String).

Public fieldStatic memberUnspecified
Default value for command type. Can only be used temporarily and cannot be executed.
Public fieldStatic memberUpdate
Applies the changes, supplied in the Parameter property.

For more information, see CreateUpdateCommand(IBuffer, String).

Public fieldvalue__
Top
See Also