Hello,
I’m looking for a way to do object relational mapping to a DB through U3D. I’ve noticed that System.Data isn’t in the Unity version of MONO, and I just can’t copy over the DLL from windows b/c I’m developing for android and IOS.
One option I found was SIAQODB, which integrates directly into Unity. http://siaqodb.com/ this seems like a great option bc it’s 40$ (right now, usually 180$)
However, before I get started with that, I want to know if there are any other alternatives. Basically, I have a few different objects i want to map to a db and want to be able to access/query them like normal JS/C# objects
A rough e.g. of what I mean by obj relational mapping:
dog = new Dog().save()
dog.name = “buddy”
dog.owner : Person = “…” ////Select owner from Dogs where name == “buddy”
dog.owner.all_dogs : Dog[ ] = [buddy, john, fred] …