private bool ValidateDataTypes(List <object> row)
        {
            var fields = Table.Schema.Fields;

            if (fields.Count == row.Count)
            {
                for (int i = 0; i < fields.Count; i++)
                {
                    if (!TypeValidator.IsValidValue(fields[i].Type, row[i]))
                    {
                        return(false);
                    }
                }
                return(true);
            }
            return(false);
        }