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
[Description("Creates a SQL CREATE TABLE command string for the given object type, using its primitive, enum, string, Guid, and DateTime properties as columns.")]
43
+
[Input("objectType","The type from which to derive the SQL table columns.")]
44
+
[Input("tableName","The name for the SQL table. Defaults to the type name if not provided or empty.")]
45
+
[Output("command","SQL CREATE TABLE command string for the given type.")]
[Description("Creates an object instance from a dictionary of property name-value pairs. The target type is inferred from the _t key in the dictionary if not provided or abstract.")]
43
+
[Input("dic","Dictionary mapping property names to their values. Keys starting with _ are stored as CustomData on BHoMObjects.")]
44
+
[Input("type","The type of object to create. If null or abstract, the type is resolved from the _t key in the dictionary.")]
45
+
[Output("obj","An object instance populated with values from the dictionary.")]
0 commit comments