I am creating a Xamarin application with PCL, and I would like to use SQLite in PCL to share the database code for specific platform projects.
I have already reviewed the Tasky Portable project, where they use an abstract class to achieve this. I had some problems implementing this method, so I was looking for another solution for using SQLite in PCL. I came across a Xamarin Forms article where they use the SQLite PCL NuGet package to implement it in PCL.
Since I am not using Xamarin Forms, what is the difference between the two methods? Can I use the NuGet batch solution to implement SQLite in PCL without using Xamarin Forms? This method seems much simpler than an abstract class.
c # sqlite portable-class-library xamarin
Tomzie
source share