Following section demonstrates how to execute the TSQL command.
		// SQL statement is being prepared
		var str = "DELETE FROM table WHERE field1<>0 AND field2='X'";

		var affectedRows = connection.ExecuteNonQuery(str);