-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Problem:
// 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 = "" });
Solution:
var update = new QuickbaseCommandBuilder()
.ForTable("")
.UpdateRecord(recordId, record => record
.AddFields(fieldsDictionary)) // Need a way to pass it like this
.BuildInsertUpdateCommand();
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request