SQLite-Net extensions with SQLite-Net PCL compatibility (do not mark the period)

Basically my question is that SQLite-Net Extensions ( NuGet Link ) is compatible with Frank A. Krueger SQLite-net PCL . As I understand it, at some point Oystein Krog created a plug for improving things in the past (perhaps before Frank updated things?), So SQLite.Net PCL appeared.

Now that Frank has the “official” version PCL, I would like to stick with it instead of the plug. However, it is unclear whether SQLite-Net Extensionsonly the plug really supports it or not. The site says it supports SQLite-net, but the dependencies say SQLite.net. Any clarifications for my (and future people) would be greatly appreciated !!!

Edit: I know that “SQLite-Net PCL” is just the name of the NuGet package, not a separate PCL. I have this (without SQLite-Net Extensions), fully working in my code in real PCL.

+4
source share
3 answers

SQLite-Net Extensions, , . , nuget, Frank A. Krueger nuget package

SQLite.Net Extensions-MvvmCross, SQLite.Net PCL, MvvmCross SQLite plugin, nuget.

SQLite-Net , SQLite-Net:

  • SQLite-Net PCL ( NuGet)
  • SQLite.Net.Async-PCL ( NuGet)
  • SQLite MvvmCross ( NuGet)
  • SQLite-Net ( NuGet)
+2

( , 13 2016 ) SQLite.Net Extensions-PCL (2.0.0-alpha1), sqlite-net-pcl ( >= 1.1.2) Frank .

https://www.nuget.org/packages/SQLiteNetExtensions/2.0.0-alpha1

+2

, , Frank Krueger nuget PCL. PCL . SQLite-Net Extensions, SQLite.Net nuget .

SQLite-Net . , , , , Frank SQLite.

#if USING_MVVMCROSS
using SQLiteConnection = Cirrious.MvvmCross.Community.Plugins.Sqlite.ISQLiteConnection;
#elif PCL
using SQLite.Net;
using SQLite.Net.Attributes;
#else
using SQLite;
#endif

, .

However, I would recommend that you stick with it SQLite-Net PCL, as it is actively supported and is currently being developed with a large number of functions (for example, asynchronous operations).

0
source

All Articles