Hi,
Using the C# CRUD interface i see that i can create nodes, but will all the other types of items work? for example, can i create an Orion.Accounts or a Orion.Views using the CRUD interface?
Regards,
Alberto García
Hello, the CRUD is currently not supported on all the SWIS entities. The list of the entities, which fully support the CRUD you'l get by query
SELECT FullName, CanCreate, CanRead, CanUpdate, CanDelete FROM Metadata.Entity where CanCreate = 'True' and CanRead = 'True' and CanUpdate = 'True' and CanDelete = 'True'
and analogically filter it per your needs.
Hope it helped.
Honza
Thanks Jan,
I'll check it