Andreas Titan
Andreas Titan
Updated to latest develop commit.
@dsiganos @thsfs Commit squash & rebase done (PR includes the iterable_store implementation from #3766).
> I think the reverse_link table should be outside of the core database and in a separate auxiliary database. That will: > > * avoid the core database versioning problem...
I will update the PR within the next two days. Have to finish another task first, but should be done soon.
> I will update the PR within the next two days. Have to finish another task first, but should be done soon. Done. I also readded the LMDB reverse_links table...
Another sample does not throw an exception, but does not work as well: ``` Engine.RegisterType(); Engine.GlobalObject.SetProperty(typeof(Person)); Person p2 = Engine.CreateObject(); p2.Name = "Jackie"; Engine.GlobalObject.SetProperty("p2", p2, null, null, ScriptMemberSecurity.Locked); Engine.Execute (@"...
Hi James, sorry for the late reply! Unfortunately array parameters don't work as well. Seems like only primitive and registered types get converted correctly. I will do some research and...