BugsBiteBugs / sqlitepersistentobjects

Automatically exported from code.google.com/p/sqlitepersistentobjects
0 stars 0 forks source link

Support for Many-to-Many relations #22

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Currently there's no way to create many-to-many relations. Attempt to use the 
following model:

@interface A {
    NSArray *items; // items of class B
}

@interface B {
    NSArray *items; // items of class A
}

results in recursion and crash.

Original issue reported on code.google.com by farcaller on 18 Dec 2008 at 6:17