Hi
I am wondering why its not possible to create content less object in documentum using c# .Net ?
Its possible in Java.
below is my sample c# code
ObjectIdentity sampleObjId = new ObjectIdentity(repositoryName);
DataObject sampleDataObject = new DataObject(sampleObjId, "dm_document");
sampleDataObject.getProperties().set("object_name", objectName);
or
DataObject dataObject = new DataObject(objIdentity, "dm_document");
PropertySet properties = dataObject.Properties;
properties.Set("object_name", object_name);
problem is: its not able to call property set method.
So I am struggling to proceed with setting/adding the properties to the object and thereafter creating the content less object .
Also please tell me whether creating a contentless object using create method (objectService.Create(dataPackage, operationOptions)) is similar to inserting the property values to corresponding table?
ie: Inserting the property values into the registered table will resultant into contentless object creation?
thanks in advance
Asish