Hello,
I am trying to update PDATA1 value of an element but I am not able to do that. I have gone through forum and found that we can update it through SQL Query and I did the same but was not able to update the value. Can you please let me know why exactly my query didn't work.
QUERY-
update t_object set PDATA1 = '{665E067B-2978-4331-88A7-735269CC00E6}' where Object_ID = 508
code - C#
string sqlUpdatePdata1 = "update t_object set PDATA1 = '" + embeddedElement.ElementGUID + "'"
+ " where Object_ID = " + property.ElementID;
logger.DebugFormat("Update Query - {0}", sqlUpdatePdata1);
repository.Execute(sqlUpdatePdata1);
Thanks,
Sravan