You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Figment.Common/Data/IThingStorageProvider.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ public interface IThingStorageProvider
32
32
/// <param name="schema">The <see cref="Schema"/> to which the <see cref="Thing"/> specified by <paramref name="thingGuid"/> shall be associated.</param>
/// <returns>A task returning a <see cref="bool"/> indicating whether the operation was successful and an updated <see cref="Thing"/> loaded from the data store after the modification was made, if successful.</returns>
Copy file name to clipboardExpand all lines: Figment.Common/Schema.cs
+22Lines changed: 22 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -228,6 +228,28 @@ public SchemaDateField AddDateField(string name)
228
228
returnsdf;
229
229
}
230
230
231
+
/// <summary>
232
+
/// Creates a new <see cref="SchemaIncrementField"/> and adds it as a field of this schema.
233
+
/// </summary>
234
+
/// <param name="name">The name of the new increment field.</param>
235
+
/// <returns>The new increment field.</returns>
236
+
/// <exception cref="ArgumentException">Thrown if the <paramref name="name"/> is null or if a field of this name already exists on the schema.</exception>
0 commit comments