Following section demonstrates how to execute the TSQL command.
		// Query
		var query = "DELETE FROM table WHERE field1<>0 AND field2='X'";

		// Execution
		var {{hl}}affected_rows{{/hl}} = connection.Sql({{hl}}query{{/hl}}).{{hl}}NonQuery(){{/hl}};