摘要: [Table] public class AddTableNameHere : INotifyPropertyChanged, INotifyPropertyChanging { // // TODO: Add columns and associations, as applicable, here. // // Version column aids update performance. [Column(IsVersion = true)] private Binary _version; ... 阅读全文
posted @ 2013-10-05 13:51 MinieGoGo 阅读(211) 评论(0) 推荐(0) 编辑
摘要: SQLite is a lightweight, server-less database, it's great for embedding into client application. It works across Windows, iOS, Android, browers.Code snippetsCreate database connectionvar connection = new SQLiteAsyncConnection("testdb.sqlite");Create tableawait connection.CreateTableAyn 阅读全文
posted @ 2013-10-05 10:36 MinieGoGo 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 1.Install SQLite for Windows Phone SDKC:\Program Files (x86)\Microsoft SDKs\Windows Phone\v8.0\ExtensionSDKs2.Install sqlite-net NuGet package3.Install sqlite-net-wp8 C++ wrapper from https://github.com/peterhuene/sqlite-net-wp8.git4.Add the SQLite project reference and windows phone extension SDK r 阅读全文
posted @ 2013-10-05 04:46 MinieGoGo 阅读(183) 评论(0) 推荐(0) 编辑