Object Identity?

Greetings,
Is there an identity column created internally every time we create an schema? or do I need to manually create an Identity column like “Id” by myself? and if so, how do i specify it’s an identity column and not just a normal int?

Thanks in advance,
Geo

Every table has the “objectId” column which is a string. Simply declare the “objectId” property in the classes you save and you will get a unique identity for the objects you work with.

Regards,Mark

Perfect, thanks