SQLite.Net-PCL
SQLite.Net-PCL copied to clipboard
Simple, powerful, cross-platform SQLite client and ORM - Updated version with PCL support
Hi, I get the following error message in my Windows 8.1 project when I use Trim() in a query. I am using the following package: SQLite.Net.Core-PCL 3.1.1. I also have...
This is on the latest stable version of the library (1.8.116) I'm not sure if this is a bug or by design. The ignored 'Number' column in the below class...
I have tried the AsyncTableQuery with skip function. It returns 0 some certain point. Instede of Query.skip, i tried with c# list items it's return the value properly. I feel...
when i make new project on xamarin form 5 and download sqlite-net-pcl i found this warning Package 'SQLite.Net-PCL 3.1.1' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' instead of...
I've just spent a few days trying to filter my Android Sqlite db for entries made on a certain day and NOTHING worked. I tried feeding it iso dates (yyyy-mm-dd...
Lets say I have a simple table ``` public class Product { public int Id { get; set;} public string Name { get; set; } } ``` and want to...
If i use a primary key with value 0, the wrapper override this value and autoincrement automaticaly, but in some situation, it's voluntary set (synchro with database offline with same...
My app fine for Android7 lower versions.But it doesn't work on Android7+.Please Help me They didn't work: SQLiteNetExtensions SQLite.Net.Platform.XamarinAndroidN (I can't install)(Package SQLite.Net.Platform.XamarinAndroidN 3.1.1 is not compatible with monoandroid81 (MonoAndroid,Version=v8.1)....
I have this table with only a id key and child objects (no direct data): ``` [Table("Categories")] public class Category { [PrimaryKey] public int Id { get; set;} [OneToMany(CascadeOperations =...