Tag Archives: Database

Building A Generic SQLite Repository

In a recent project, I found myself needing multiple, seemingly unrelated databases.  It was crazy to copy and paste the code for such basic operations as getting all the data, etc., so the obvious alternative was a generic repository, and … Continue reading

Posted in C#, Data, Essentials, Xamarin | Tagged , , | Comments Off on Building A Generic SQLite Repository

When Isolated Storage Isn’t Enough

Windows Phone From Scratch #38 When you wish to persist state across usages of your application, Isolated Storage allows you to write to the disk and stash away key-value pairs.  For state, this is usually sufficient, but if what you … Continue reading

Posted in Patterns & Skills | Tagged , , , , | 5 Comments