Skip to content

Commit ef51169

Browse files
author
ducksoop
committed
docs: ✏️ add doc for addfields
Add some xmldocs for AddFields in QuickbaseCommandBuilder ✅ Closes: 12
1 parent e0fe14e commit ef51169

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

QuickbaseNet/Helpers/QuickbaseCommandBuilder.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,11 @@ public RecordBuilder AddField<T>(int fieldId, T value)
125125
return this;
126126
}
127127

128+
/// <summary>
129+
/// Adds multiple fields to the record being built.
130+
/// </summary>
131+
/// <param name="fields"></param>
132+
/// <returns></returns>
128133
public RecordBuilder AddFields(params (int fieldId, dynamic value)[] fields)
129134
{
130135
foreach (var field in fields)

0 commit comments

Comments
 (0)