I've tried the following code with no success:
Method m = element.Methods.AddNew(name, "");
m.Stereotype = "XisAction";
m.Update();
repository.Execute("insert into t_xref (XrefID, Name, Type, Visibility, Partition, Description, Client, Supplier) values " +
"('{" + Guid.NewGuid() + "}', 'Stereotypes', 'operation property', 'Public', 0, '@STEREO;Name=XisAction;FQName=XIS-Mobile::XisAction;@ENDSTEREO;', '" + action.MethodGUID + "', '<none>');");
I've also queried the table t_operationtag and it's empty...
Any idea what could be wrong?
Thanks in advance!