DevExpress.DataAccess.BigQuery.BigQueryCommand.ExecuteNonQuery C# (CSharp) Method

ExecuteNonQuery() public method

Executes a non-query SQL statement and returns the number of rows affected.
public ExecuteNonQuery ( ) : int
return int
        public override int ExecuteNonQuery() {
            var task = ExecuteNonQueryAsync();
            try {
                return task.Result;
            }
            catch(AggregateException e) {
                throw e.Flatten().InnerException;
            }
        }