I am working on an iPhone application in which I manage some kind of “agenda”. The application must be authenticated on the server in order to work (= without offline mode), so I do not need any persistence on the iPhone.
Is this a bad practice if, as soon as I receive data for programs from servers (about 10-50 lists ~ 30 days), I store them in C # user objects containing lists of other objects (mainly months containing days), instead of setting up a database or using XML? I need to be able to edit and search through them quite easily (I use LINQ with success in my POC at the moment)
Thanks in advance, Regards,
C.Hamel
source
share