// In this example, I am trying to clear out many fields in Quickbase
int[] fieldIds = { 89, 92, 95, 103, 106, 109, 331, 334, 358 };
var fieldsDictionary = fieldIds .ToDictionary(field => field.ToString(), field => new FieldValue { Value = "" });
var update = new QuickbaseCommandBuilder()
.ForTable("")
.UpdateRecord(recordId, record => record
.AddFields(fieldsDictionary)) // Need a way to pass it like this
.BuildInsertUpdateCommand();
Problem:
Solution: