iBATIS.NET Class Library DataMapper V1.6.1, DataAccess V1.9.1

SqlMapper.Delete Method 

Executes a Sql DELETE statement. Delete returns the number of rows effected.

[Visual Basic]
NotOverridable Public Function Delete( _
   ByVal String As String, _
   ByVal Object As Object _
) As Integer _
    Implements ISqlMapper.
[C#]
public int Delete(
   String statementName,
   Object parameterObject
);

Parameters

statementName
The name of the statement to execute.
parameterObject
The parameter object.

Return Value

The number of rows effected.

Implements

ISqlMapper.

See Also

SqlMapper Class | IBatisNet.DataMapper Namespace