Re: Representing an object graph

2016-12-15 Thread Chris Hanson
On Dec 15, 2016, at 7:24 PM, Daryle Walker wrote: > > On Dec 6, 2016, at 10:18 PM, Chris Hanson mailto:c...@me.com>> > wrote: >> >> On Dec 5, 2016, at 4:18 PM, Daryle Walker > > wrote: >> >>> I've heard that Core Data is a object graph and persistence library. What >>>

Re: Representing an object graph

2016-12-15 Thread Daryle Walker
> On Dec 6, 2016, at 10:18 PM, Chris Hanson wrote: > > On Dec 5, 2016, at 4:18 PM, Daryle Walker > wrote: > >> I've heard that Core Data is a object graph and persistence library. What if >> you want just the first part? The graph seems like a neat way to save on >>

Re: Representing an object graph

2016-12-15 Thread Daryle Walker
> On Dec 5, 2016, at 8:17 PM, Jens Alfke wrote: > > >> On Dec 5, 2016, at 4:18 PM, Daryle Walker wrote: >> >> I've heard that Core Data is a object graph and persistence library. What if >> you want just the first part? > > You can use the XML-based store instead of SQLite, and just not b

Re: Representing an object graph

2016-12-06 Thread Chris Hanson
On Dec 5, 2016, at 4:18 PM, Daryle Walker wrote: > I've heard that Core Data is a object graph and persistence library. What if > you want just the first part? The graph seems like a neat way to save on > modeling code, the external format is not database-ish at all (so the > capability for c

Re: Representing an object graph

2016-12-05 Thread Mike Abdullah
> On 6 Dec 2016, at 02:17, Jens Alfke wrote: > > >> On Dec 5, 2016, at 4:18 PM, Daryle Walker wrote: >> >> I've heard that Core Data is a object graph and persistence library. What if >> you want just the first part? > > You can use the XML-based store instead of SQLite, and just not both

Re: Representing an object graph

2016-12-05 Thread Jens Alfke
> On Dec 5, 2016, at 4:18 PM, Daryle Walker wrote: > > I've heard that Core Data is a object graph and persistence library. What if > you want just the first part? You can use the XML-based store instead of SQLite, and just not bother to write the XML anywhere… —Jens __

Representing an object graph

2016-12-05 Thread Daryle Walker
I've heard that Core Data is a object graph and persistence library. What if you want just the first part? The graph seems like a neat way to save on modeling code, the external format is not database-ish at all (so the capability for custom export formats won't help). Can I just not use the p