How SQLite.Net-PCL handle UTC time
问题 I am using below code: using new SQLite.Net.SQLiteConnection(new SQLitePlatformWinRT(), DBPath) to get SQLiteConnection and create table. Class contain DateTime DataType class Transaction { [SQLite.Net.Attributes.PrimaryKey, SQLite.Net.Attributes.AutoIncrement] public int QId { get; set; } public DateTime PurchaseDate { get; set; } public int Amount {get;set;} Public string ItemCode {get;set;} } Insert Data As follows: var db = new SQLite.Net.SQLiteConnection(new SQLite.Net.Platform.WinRT