Hi all,
I tried to modify an attribute of the person object via the API in system debugger with the following code :
dbPerson = Session.Source.Get("Person", "38d611af-e1aa-4ffd-b4b4-79672d2cc21e")
' Update CustomProperty09 (Person)
dbPerson.PutValue("CustomProperty10", "test")
' Save person to database
Using uow As IUnitOfWork = Session.StartUnitOfWork()
uow.Put(dbPerson)
uow.Commit()
End Using
But i get always an error at line uow.put(dbPerson)
{"Error during execution of 'OnLoaded' in logic module 'VI.DB.Entities.EntityScriptLogic'."}
{"Could not load type 'DynScripts.Tables' from assembly 'Tables, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null'.":"DynScripts.Tables"}
Do you know how to resolve this ?
Regards,
Truc
